home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-01-13 | 749 b | 33 lines |
-
- # makefile for the oem
-
- .SUFFIXES:
- .SUFFIXES: .c .obj .dll .h .csc .sc .ih .ph .psc .rc .res .i .exe .map .lib
-
- # Customize SOMTOOL for your environment
- SOMTOOL = \toolkt20\sc;\tlktppm\sc
-
- !if [set SMTMP=$(TMP)] || \
- [set SMEMIT=ih;h;ph;psc;sc;c] || \
- [set SMINCLUDE=$(SOMTOOL)]
- !endif
-
- .csc.ih:
- sc -v -r $*.csc
-
- all: oem.dll oem.res
-
- oem.ih: $*.csc
- oem.c: $*.ih
-
- oem.dll: oem.obj oem.res
- LINK386 /A:16 /noi /nol /nod /noe /exepack /packcode /packdata /m oem.obj,oem.dll,oem.map,penpm.lib+som.lib+os2386.lib+dde4nbs.lib,oem.def
- rc oem.res oem.dll
-
- oem.obj: oem.c
- ICC /c /Ge- /Gd- /Se /Re /Sn+ /Ss+ /Mp /Gm+ /DBIT32 /DOS2_2 /DSOMRETAIL oem.c
-
- oem.res: oem.rc
- rc -r oem.rc
-
-