Changeset 689 for Daodan/makefile
- Timestamp:
- Mar 4, 2013, 4:52:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/makefile
r688 r689 8 8 endif 9 9 10 GCCFLAGS = -std=c99 -O0 -Wall -fomit-frame-pointer -fpack-struct - pedantic -Wextra -Wno-unused-variable10 GCCFLAGS = -std=c99 -O0 -Wall -fomit-frame-pointer -fpack-struct -Wextra -Wno-unused-variable -Wno-unused-parameter 11 11 LINKFLAGS = -O0 -Wall -fomit-frame-pointer -fpack-struct -s -mdll 12 12 LOCALE = LC_MESSAGES=C … … 21 21 22 22 ALL: $(DEST) $(OBJS) 23 echo "Linking $<"23 @echo "Linking $<" 24 24 $(LOCALE) $(GCC) $(LINKFLAGS) -o $(OUT) $(DEST) $(OBJS) $(LIBS) 25 25 … … 29 29 30 30 build/%.o: src/%.c 31 echo "Compiling $<"31 @echo "Compiling $<" 32 32 $(LOCALE) $(GCC) $(GCCFLAGS) -c -o $@ $< 33 echo33 @echo 34 34 35 35 build/%.o: src/%.rc 36 echo "Assembling resource $<"36 @echo "Assembling resource $<" 37 37 $(WINDRES) -i $< -o $@ 38 echo38 @echo 39 39
Note:
See TracChangeset
for help on using the changeset viewer.