home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / kwikstik.zip / MAKEFILE < prev    next >
Text File  |  1994-03-24  |  608b  |  29 lines

  1. DEBUG=-Ow
  2. # DEBUG=-Od -Zi
  3.  
  4. .c.obj:
  5.         cl -c -nologo $(DEBUG) -Zp -AL -G2s -W3 $*.c
  6.  
  7. all: stikhook.dll kwikstik.exe
  8.  
  9. # Dynamic Link Library
  10.  
  11. stikhook.obj: stikhook.c
  12.         cl -c -nologo -Alfu -G2s -W3 stikhook.c
  13.  
  14. stikhook.dll: stikhook.obj stikhook.def
  15.         link stikhook, stikhook.dll /align:16, NUL, /NOD OS2,stikhook;
  16.  
  17. # Application
  18.  
  19. main.obj: main.c main.h maindef.h
  20.  
  21. utils.obj: utils.c main.h
  22.  
  23. kwikstik.res: kwikstik.rc maindef.h kwikstik.dlg
  24.     rc -r kwikstik.rc
  25.  
  26. kwikstik.exe: kwikstik.res main.obj utils.obj kwikstik.def
  27.         link @kwikstik.lnk
  28.     rc kwikstik.res
  29.