home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / tcpled10.zip / Makefile < prev    next >
Makefile  |  1998-06-14  |  832b  |  41 lines

  1. #
  2. # tcpleds
  3. # by Oleg Titov
  4. # Project started January 13, 1998
  5. #
  6. # Version = MAJOR.MINOR.REVISION
  7. #
  8. MAJOR         = 1
  9. MINOR         = 0
  10. REVISION     = 0
  11. #
  12. all: tcpleds.exe
  13.  
  14. tcpleds.exe: tcpleds.obj
  15.   ilink /PM:VIO tcpleds.obj tcp32dll.lib so32dll.lib
  16.  
  17. tcpleds.obj: tcpleds.c
  18.   icc /Ss /C tcpleds.c
  19.  
  20. distro: lxlite zip ace
  21.  
  22. lxlite:
  23.     lxlite tcpleds.exe /C:max
  24.     lxlite tcpleds.exe /C:minStub
  25.  
  26. zip:
  27.     if exist tcpleds$(MAJOR)$(MINOR).zip del tcpleds$(MAJOR)$(MINOR).zip
  28.     zip -9 tcpleds$(MAJOR)$(MINOR) \
  29.     file_id.diz readme \
  30.     tcpleds.exe \
  31.     TODO GREETINGS WARRANTY THANKS BUGS \
  32.     Makefile tcpleds.c
  33.  
  34. ace:
  35.     if exist tcpleds$(MAJOR)$(MINOR).ace del tcpleds$(MAJOR)$(MINOR).ace
  36.     ace2 a -m5 tcpleds$(MAJOR)$(MINOR) \
  37.     file_id.diz readme \
  38.     tcpleds.exe \
  39.     TODO GREETINGS WARRANTY THANKS BUGS \
  40.     Makefile tcpleds.c