home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / blackhol / blakhole.mak < prev    next >
Encoding:
Makefile  |  1992-11-30  |  704 b   |  31 lines

  1. class = Blakhole
  2. cflags = /c /Q /Ge- /Gd- /Se /Re /ss /Ms /Gm+
  3. lflags = /NOI /NOL /ALIGN:16 /M /PACKCODE /PACKDATA /EXEPACK
  4. dll_libs = os2386.lib som.lib
  5. subobjs =
  6.  
  7. .SUFFIXES:
  8. .SUFFIXES: .c .obj .dll .csc .sc .h .ih .ph .psc .rc .res .def
  9.  
  10. .csc.ih:
  11.     sc -r $*.csc
  12.  
  13. .csc.c:
  14.     sc -r $*.csc
  15.  
  16. .c.obj:
  17.     icc $(cflags) $*.c
  18.  
  19.  
  20. .rc.res:
  21.     rc -r $*.rc $*.res
  22.  
  23. all: $(class).dll
  24.  
  25. $(class).ih: $(class).csc
  26. $(class).obj: $(class).c $(class).ih $(class).h $(class).sc
  27. $(class).res: $(class).rc $(class).ih $(class).ico
  28. $(class).dll: $(class).obj $(class).def $(class).res $(subobjs)
  29.     LINK386 $(lflags) $* $(subobjs), $*.dll, $*.map, $(dll_libs), $*.def;
  30.     rc $*.res $*.dll
  31.