Полагаю, у вас небольшой беспорядок с make-файлами. Обратите внимание, что (для GNU Make): By default, when make looks for the makefile, it tries the following names, in order: GNUmakefile, makefile and Makefile.
- убедитесь, что вы не создали GNUmakefile`
Когда речь идет о FreeBSD
на основе make
, это будет: If no -f makefile makefile option is given, make will try to open 'makefile' then 'Makefile' in order to find the specifications.
Единственный случай, который я могу себе представить, следующий:
> cat Makefile
all: hello
hello: hello.o
cc -o hello hello.o
hello.o: hello.c
cc -c hello.c
clean:
rm hello.o hello
> make
cc -c hello.c
cc -o hello hello.o
> ./hello
Hello world!
> make clean
rm hello.o hello
> touch makefile
> echo "makefile:" > .depend
> make
`makefile' is up to date.