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

  1. #DEBUG=-DDEBUG
  2. CCOPTS=-O2 -fomit-frame-pointer -s
  3.  
  4. indigoP.exe: indigo.cpp areas.h pkthead.h bluewave.h debug.h config.h areas.o config.o fido.o uplink.o version.h shorttag.o crc32.o msgid.o indigo.def
  5.         gcc $(CCOPTS) $(DEBUG) -o indigoP.exe indigo.cpp areas.o fido.o config.o uplink.o shorttag.o crc32.o msgid.o indigo.def -lstdcpp -lbsd
  6.  
  7. fido.o: fido.cpp areas.h fido.h debug.h
  8.         gcc -c $(CCOPTS) $(DEBUG) -o fido.o fido.cpp
  9.  
  10. areas.o: areas.cpp areas.h fido.h debug.h shorttag.h
  11.         gcc -c $(CCOPTS) $(DEBUG) -o areas.o areas.cpp
  12.  
  13. config.o: config.cpp config.h fido.h debug.h uplink.h areas.h
  14.         gcc -c $(CCOPTS) $(DEBUG) -o config.o config.cpp
  15.  
  16. uplink.o: uplink.cpp uplink.h fido.h debug.h version.h shorttag.h
  17.         gcc -c $(CCOPTS) $(DEBUG) -o uplink.o uplink.cpp
  18.  
  19. shorttag.o: shorttag.cpp shorttag.h crc32.h datatyp.h
  20.         gcc -c $(CCOPTS) $(DEBUG) -o shorttag.o shorttag.cpp
  21.  
  22. crc32.o: crc32.cpp crc32.h
  23.         gcc -c $(CCOPTS) $(DEBUG) -o crc32.o crc32.cpp
  24.  
  25. msgid.o: msgid.cpp msgid.h crc32.h datatyp.h
  26.         gcc -c $(CCOPTS) $(DEBUG) -o msgid.o msgid.cpp
  27.  
  28. clean:
  29.         del *.o *.bak
  30.