#環境
- windows10
- wsl2上でubuntuを動かしている。
- make: version 4.2.1
#問題
makefile
1CFLAGS=-std=c11 -g -static 2SRCS=$(wildcard *.c) test/fortest.c 3OBJS=$(SRCS:.c=.o) 4 5selfcc: $(OBJS) 6 gcc -o test/fortest.o -c test/fortest.c 7 $(CC) -o selfcc $(OBJS) $(LDFLAGS) 8 9$(OBJS): selfcc.h 10 11test: selfcc 12 ./test.sh 13 ./ctest.sh 14 15 16clean: 17 rm -f selfcc *.o *~ tmp* 18 19.PHONY: test clean 20
これをmake test で実行すると、
ERROR
1make: *** [Makefile:13: test] Error 3
が表示される。
実行自体はうまくいっているが謎のエラーなのでできれば解決したい。
##詳しい方おしえてください!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/27 13:26