これは私のメイクファイルです:
CFLAGS=-Wall -g -O2
clean:
rm -f ex1
そして、たとえば次のようなスクリプトを実行すると ( ex3.c
):
#include <stdio.h>
int main()
{
int age = 10;
int height = 72;
printf("I am %d years old.\n", age);
printf("I am %d inches tall.\n", height);
return 0;
}
次のエラーが表示されます。
$ g++ Makefile.c -o makefile
Makefile.c:1:1: error: 'CFLAGS' does not name a type
CFLAGS=-Wall -g
^g++ ex3.c -o ex3
$