home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / alckey / makefile < prev   
Encoding:
Makefile  |  1992-11-12  |  333 b   |  17 lines

  1. all: alckey.exe
  2.  
  3. APP_compile = -c -AS -Gw -Zpie -W3 -Od
  4. APP_link = /CO /NOD /NOE
  5.  
  6.  
  7. alckey.obj: $*.c $*.h
  8.      cl $(APP_compile) $*.c
  9.  
  10. alckey.res: $*.rc $*.h
  11.      rc -r $*.rc
  12.  
  13. alckey.exe: $*.obj $*.def $*.res
  14.      link $(APP_link) $*, $*, $*/map/li /align:16, libw slibcew penwin, $*.def
  15.      rc $*.res
  16.      mapsym $*
  17.