home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / xf083czs.zip / XSHUT421 / xshutdwn.mak < prev    next >
Makefile  |  1998-09-29  |  443b  |  21 lines

  1.  
  2. CC      = icc /c /Ge /Gd- /Se /Re /ss /Gm+ /Ti+ /O- /Oi-
  3. LINK    = ilink
  4. INCLUDE = $(INCLUDE);G:\develop\C\XFolder\source\main
  5.  
  6. all: xshutdwn.exe
  7.  
  8. xshutdwn.obj: xshutdwn.c $(HEADERS)
  9.           @ echo $(INCLUDE)
  10.           $(CC) xshutdwn.c
  11.  
  12. xshutdwn.res: xshutdwn.rc xshut.ico
  13.  
  14. xshutdwn.exe: xshutdwn.obj xshutdwn.def xshutdwn.res
  15.           $(LINK) xshutdwn.obj xshutdwn.def
  16.           rc -p -x xshutdwn.res xshutdwn.exe
  17.  
  18.  
  19.  
  20.  
  21.