Ignore:
Timestamp:
Feb 10, 2000, 12:52:04 AM (26 years ago)
Author:
bird
Message:

Dependencies.

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:46 bird Exp $
     1# $Id: makefile.gcc,v 1.3 2000-02-09 23:50:51 bird Exp $
    22
    33#
     
    4444#Note: Add -fhandle-exceptions if old gcc version (< 2.8.x?).
    4545!ifndef DEBUG
    46 CFLAGS        = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -s -O
     46CFLAGS    = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -s -O
    4747!else
    48 CFLAGS        = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -g
     48CFLAGS    = $(CFZOMF) -Wall -Zmap -Zmt -mprobe -Wall -g
    4949!endif
    5050CXXFLAGS  = $(CFLAGS)
     
    6666
    6767commongcc.$(LIB): kFilePE.$(O) kFileDef.$(O)
    68    -$(RM) $@
     68   $(RM) $@
    6969   $(AR) cr $@ kFilePE.$(O) kFileDef.$(O)
    7070
    7171
    72 clean:
    73    -@$(RM) *.$(O)
    74    -@$(RM) commongcc.$(LIB)
     72dep:
     73    @nmake /nologo -f makefile NODEP=1 dep
     74
     75!ifndef NODEP
     76!include .depend
     77!endif
    7578
    7679
    77 # dependencies
    78 kFilePE.$(O):   kFilePE.cpp   \
    79                 kFilePE.h     \
    80                 kFileFormatBase.h
     80clean:
     81   @$(RM) *.$(O) commongcc.$(LIB)
    8182
    82 kFileDef.$(O):  kFileDef.cpp  \
    83                 kFileDef.h    \
    84                 kFileFormatBase.h
    85 
Note: See TracChangeset for help on using the changeset viewer.