home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / PMSTART.ZIP / PMSTART next >
Text File  |  1989-09-14  |  653b  |  29 lines

  1. # Makefile for Presentation Manager Start CMD
  2. # Created by Massimo Pezzi, 1989
  3. # 71531,756
  4.  
  5. # Abbreviations
  6. #
  7. name    =       PMSTART
  8. CC      =       cl -c -AC -G2s -Od -W3 -Zpei
  9. LF      =       /align:16 /codeview /map /NOD
  10. ZIP     =       pkzip /o /f /bD:\TEMP\ $(name).ZIP
  11. OBJS    =       $(name).OBJ
  12. LIBS    =       CLIBCAP OS2
  13.  
  14. # Inference rules
  15. #
  16. .c.obj:
  17.     $(CC) $(name).C
  18.  
  19. # Dependencies
  20. #
  21. $(name).obj:     $(name)
  22.  
  23. $(name).EXE:     $(OBJS) $(name).def $(name).obj
  24.     link $(LF) $(OBJS), $@, $*.MAP, $(LIBS), $*.DEF
  25.     mapsym $*
  26.  
  27. $(name).ZIP:     READ.ME $(name).EXE $(name).DOC $(name)
  28.     $(ZIP) $** $*.C $*.DEF
  29.