home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / shtdwn01.zip / Source / makefile next >
Makefile  |  1994-01-30  |  665b  |  25 lines

  1. #
  2. #  PM Shutdown Makefile for use with IBM C Set++ and related tools.
  3. #  (c) 1994 by Carsten Wimmer
  4. #
  5.  
  6. OBJ     = shutdown.obj
  7.  
  8. CC      = icc
  9. CCFLAGS = /Q /C /Gm+ /G3 /Gh- /O+ /Gr- /Ti- /Tm- /Tx- /Fi+ /Si+ /Ss+
  10. CL      = link386
  11. CLFLAGS = /nologo /bat /map /BASE:65536 /ALIGN:16 /EXEPACK /pmtype:pm $(OBJ),shutdown.exe,shutdown.map,,shutdown.def
  12.  
  13. all: shutdown.exe
  14.  
  15. shutdown.EXE: $(OBJ) shutdown.res Makefile shutdown.def
  16.               $(CL) $(CLFLAGS)
  17.               RC shutdown.res shutdown.exe
  18.  
  19. shutdown.RES: shutdown.rc Makefile
  20.               RC -r shutdown.rc
  21.  
  22. shutdown.OBJ: shutdown.h Makefile
  23.               $(CC) $(CCFLAGS) shutdown.c
  24.  
  25.