home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / identd.zip / makefile < prev    next >
Makefile  |  1997-10-31  |  589b  |  36 lines

  1. #
  2. # identd makefile
  3. #
  4.  
  5. CC=icc
  6. #CFLAGS= /c  /gm+ /ti+ /q+ /Tdp
  7.  
  8. CFLAGS= /c  /gm+ /q+ /Tdp
  9.  
  10. # /c - compile
  11. # /ms - set the default calling convention to _System
  12. # /gm+ - link against multithreaded libraries
  13. # /ti+ - include debugging information
  14. # /q+ - suppress logo
  15.  
  16. #LFLAGS=/B"/DEBUG" /Gm+ /Q+
  17. LFLAGS=/Gm+ /Q+
  18.  
  19. TCPLIBS=so32dll.lib tcp32dll.lib 
  20.  
  21. all: identd.exe
  22.  
  23. identd.obj: identd.cpp
  24.     $(CC) $(CFLAGS) identd.cpp
  25.  
  26. identd.exe: identd.obj
  27.     $(CC) $(LFLAGS) /Fe identd.exe identd.obj $(TCPLIBS)
  28.  
  29. clean:
  30.     rm -f *.obj identd.cpp
  31.  
  32. spotless: clean
  33.     rm -f *~
  34.  
  35.  
  36.