• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisão338a46ae0351df8c1eaeb470d9740057add551a9 (tree)
Hora2017-05-21 23:17:38
Autordhrname <dhrname@user...>
Commiterdhrname

Mensagem de Log

Modify the Makefile

Mudança Sumário

Diff

--- a/source_code/Makefile
+++ b/source_code/Makefile
@@ -4,18 +4,17 @@ NODEBUGMODE = -O2
44 all : startest star
55 .PHONY : all
66
7+.c.o:
8+ $(CC) -Wall -std=c11 $(NODEBUGMODE) -c $<
9+
710 star.o: star.c shadowstar.h
8- $(CC) -Wall -std=c11 $(NODEBUGMODE) -c star.c
911
1012 shadowstar.o: shadowstar.c shadowstar.h
11- $(CC) -Wall -std=c11 $(NODEBUGMODE) -c shadowstar.c
1213
1314 star: shadowstar.o star.o
14- $(CC) -Wall -std=c11 $(NODEBUGMODE) -o ../star shadowstar.o star.o
15-
15+ $(CC) -Wall -std=c11 $(NODEBUGMODE) -o ../$@ shadowstar.o star.o
1616
1717 startest.o: startest.c
18- $(CC) -Wall -std=c11 $(NODEBUGMODE) -c startest.c
1918
2019 startest: shadowstar.o startest.o
21- $(CC) -Wall -std=c11 $(NODEBUGMODE) -o ../startest shadowstar.o startest.o
20+ $(CC) -Wall -std=c11 $(NODEBUGMODE) -o ../$@ shadowstar.o startest.o