Changeset 2714 for trunk/tools/common/makefile.gcc
- Timestamp:
- Feb 10, 2000, 12:52:04 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/makefile.gcc
r826 r2714 1 # $Id: makefile.gcc,v 1. 2 1999-09-05 02:30:46bird Exp $1 # $Id: makefile.gcc,v 1.3 2000-02-09 23:50:51 bird Exp $ 2 2 3 3 # … … 44 44 #Note: Add -fhandle-exceptions if old gcc version (< 2.8.x?). 45 45 !ifndef DEBUG 46 CFLAGS 46 CFLAGS = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -s -O 47 47 !else 48 CFLAGS 48 CFLAGS = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -g 49 49 !endif 50 50 CXXFLAGS = $(CFLAGS) … … 66 66 67 67 commongcc.$(LIB): kFilePE.$(O) kFileDef.$(O) 68 -$(RM) $@68 $(RM) $@ 69 69 $(AR) cr $@ kFilePE.$(O) kFileDef.$(O) 70 70 71 71 72 clean: 73 -@$(RM) *.$(O) 74 -@$(RM) commongcc.$(LIB) 72 dep: 73 @nmake /nologo -f makefile NODEP=1 dep 74 75 !ifndef NODEP 76 !include .depend 77 !endif 75 78 76 79 77 # dependencies 78 kFilePE.$(O): kFilePE.cpp \ 79 kFilePE.h \ 80 kFileFormatBase.h 80 clean: 81 @$(RM) *.$(O) commongcc.$(LIB) 81 82 82 kFileDef.$(O): kFileDef.cpp \83 kFileDef.h \84 kFileFormatBase.h85
Note:
See TracChangeset
for help on using the changeset viewer.