home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 February / PCO_0299.ISO / filesbbs / dos / indigo01.exe / MAKEFILE < prev    next >
Encoding:
Text File  |  1997-08-17  |  996 b   |  29 lines

  1. #DEBUG=-DDEBUG
  2.  
  3. indigo.exe: indigo.cpp areas.h pkthead.h bluewave.h debug.h config.h areas.obj config.obj fido.obj uplink.obj version.h shorttag.obj crc32.obj msgid.obj
  4.         tcc -mc $(DEBUG) indigo.cpp areas.obj fido.obj config.obj uplink.obj shorttag.obj crc32.obj msgid.obj spawnc.lib
  5.  
  6. fido.obj: fido.cpp areas.h fido.h debug.h
  7.         tcc -mc -c $(DEBUG) fido.cpp
  8.  
  9. areas.obj: areas.cpp areas.h fido.h debug.h shorttag.h
  10.         tcc -mc -c $(DEBUG) areas.cpp
  11.  
  12. config.obj: config.cpp config.h fido.h debug.h uplink.h areas.h
  13.         tcc -mc -c $(DEBUG) config.cpp
  14.  
  15. uplink.obj: uplink.cpp uplink.h fido.h debug.h version.h shorttag.h msgid.h
  16.         tcc -mc -c $(DEBUG) uplink.cpp
  17.  
  18. shorttag.obj: shorttag.cpp shorttag.h crc32.h datatyp.h
  19.         tcc -mc -c $(DEBUG) shorttag.cpp
  20.  
  21. crc32.obj: crc32.cpp crc32.h
  22.         tcc -mc -c $(DEBUG) crc32.cpp
  23.  
  24. msgid.obj: msgid.cpp msgid.h crc32.h datatyp.h
  25.         tcc -mc -c $(DEBUG) msgid.cpp
  26.  
  27. clean:
  28.         del *.obj *.bak
  29.