web-dev-qa-db-ja.com

すべてのMakefileが壊れています

もうMakefileを実行できません。私は得る:

./Makefile: line 1: sorter:: command not found

Makefileの内容:

sorter: sorter.o
    gcc sorter.o -o sorter

sorter.o: sorter.c
    gcc -c sorter.c

test:
    ./run_test

check:
    c_style_check sorter.c

clean:
    rm -f sorter *.o

驚いたことに、昨日はすべてのMakefileが正常に動作していました。何が起こったのか分かりません。私のLubuntuにはアップデートがあったと思いますが、それはそれでした。

3
ItM

シェルがファイルを理解して実行することを期待しているため、エラーが発生しています。

メイクファイルは実行可能であることを意図していません-それらはmakeコマンドへの入力として与えられます。 make -f Makefile-またはmake。これは、Makefilemakefileなどのデフォルト名を持つファイルを現在のディレクトリから検索するためです。

man makeから:

   To  prepare to use make, you must write a file called the makefile that
   describes the relationships among files in your program, and the states
   the  commands for updating each file.  In a program, typically the exe‐
   cutable file is updated from object files, which are in  turn  made  by
   compiling source files.

   Once  a  suitable  makefile  exists,  each  time you change some source
   files, this simple Shell command:

          make

   suffices to perform all necessary  recompilations.   The  make  program
   uses  the  makefile  description and the last-modification times of the
   files to decide which of the files need to be  updated.   For  each  of
   those files, it issues the commands recorded in the makefile.

   make  executes  commands  in  the makefile to update one or more target
   names, where name is typically a program.  If no -f option is  present,
   make  will  look for the makefiles GNUmakefile, makefile, and Makefile,
   in that order.
7
steeldriver