|
cat Makefile
all:
@echo you have typed command "make all"
clean:
@echo you have typed command "make $@"
install:
@echo you have typed command "make $@"
#makefile eof
bash-2.05a$ make all
bash: make: command not found
bash-2.05a$ ./make all
bash: ./make: 没有那个文件或目录
bash-2.05a$
不清楚为什么不行 |
|