home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnicon2.zip / MNIcon.mak < prev    next >
Text File  |  1993-03-29  |  657b  |  30 lines

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