• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Révision9cefc6b211286c19b89f17666763fb706a47674f (tree)
l'heure2017-05-21 23:24:03
Auteurdhrname <dhrname@user...>
Commiterdhrname

Message de Log

Modify the Makefile

Change Summary

Modification

--- a/source_code/Makefile
+++ b/source_code/Makefile
@@ -1,11 +1,15 @@
11 CC = gcc
22 DEBUGMODE = -O0 -g -pg
33 NODEBUGMODE = -O2
4+SHELL = /bin/sh
5+.SUFFIXES:
6+.SUFFIXES: .c .o
7+
48 all : startest star
59 .PHONY : all
610
711 .c.o:
8- $(CC) -Wall -std=c11 $(NODEBUGMODE) -c $<
12+ $(CC) -Wall -std=c11 $(NODEBUGMODE) -c $< -o $@
913
1014 star.o: star.c shadowstar.h
1115