Changeset 689 for Daodan/makefile


Ignore:
Timestamp:
Mar 4, 2013, 4:52:19 PM (12 years ago)
Author:
alloc
Message:

Daodan: Cleaned up code so no major warnings exist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/makefile

    r688 r689  
    88endif
    99
    10 GCCFLAGS = -std=c99 -O0 -Wall -fomit-frame-pointer -fpack-struct -pedantic -Wextra -Wno-unused-variable
     10GCCFLAGS = -std=c99 -O0 -Wall -fomit-frame-pointer -fpack-struct -Wextra -Wno-unused-variable -Wno-unused-parameter
    1111LINKFLAGS = -O0 -Wall -fomit-frame-pointer -fpack-struct -s -mdll
    1212LOCALE = LC_MESSAGES=C
     
    2121
    2222ALL: $(DEST) $(OBJS)
    23         echo "Linking $<"
     23        @echo "Linking $<"
    2424        $(LOCALE) $(GCC) $(LINKFLAGS) -o $(OUT) $(DEST) $(OBJS) $(LIBS)
    2525
     
    2929
    3030build/%.o: src/%.c
    31         echo "Compiling $<"
     31        @echo "Compiling $<"
    3232        $(LOCALE) $(GCC) $(GCCFLAGS) -c -o $@ $<
    33         echo
     33        @echo
    3434
    3535build/%.o: src/%.rc
    36         echo "Assembling resource $<"
     36        @echo "Assembling resource $<"
    3737        $(WINDRES) -i $< -o $@
    38         echo
     38        @echo
    3939
Note: See TracChangeset for help on using the changeset viewer.