我需要一个生成文件,它还可以获取文件编译的名称例如:
make foo
and the makefile should compile foo.c to foo.
这是我的生成文件。如何改变它?
all: out
out: out.o
gcc -g -m32 -Wall -o out out.o
out.o: out.c
gcc -m32 -g -Wall -ansi -c -o out.o out.c
.PHONY: clean
#Clean the build directory
clean:
rm -f *.o out