source: trunk/undel.mak@ 2

Last change on this file since 2 was 2, checked in by root, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 813 bytes
Line 
1DEBUG = 0
2
3!IF $(DEBUG)
4LFLAGS = /NOI /PMTYPE:PM /ALIGN:2 /EXEPACK /CODEVIEW /M /BASE:0x10000 /STACK:65536 /NOD
5!ELSE
6LFLAGS = /NOI /PMTYPE:PM /ALIGN:2 /EXEPACK:2 /M /BASE:0x10000 /STACK:65536 /NOD /RUNFROMVDM /PACKC /PACKD
7!ENDIF
8
9.SUFFIXES:
10
11.SUFFIXES: .c .rc .ipf
12
13ALL: undel.EXE \
14 undel.res
15
16undel.res: undel.rc
17
18undel.obj: undel.c
19
20undel.exe: \
21 undel.res \
22 undel.OBJ
23 @REM @<<undel.@0
24 $(LFLAGS)+
25 undel.OBJ
26 undel.exe
27 nul.map
28 dde4mbso.lib dll\fm3dll.lib os2386.lib
29 undel.def;
30<<
31 LINK386.EXE @undel.@0
32 RC -x2 undel.RES undel.exe
33
34{.}.rc.res:
35 RC -r .\$*.RC
36
37{.}.c.obj:
38!IF $(DEBUG)
39 ICC.EXE /Kb /Ti+ /W3 /Sm /Sp4 /Ss /C /Mp /Gm+ /Gs- /G3 /O- /Q+ /Gd+ .\$*.c
40!ELSE
41 ICC.EXE /Gf+ /Kb /W3 /Sm /Sp4 /Ss /C /Mp /Gm+ /Gs- /O- /Q+ /G3 /Gt- /Gd+ .\$*.c
42!ENDIF
43
Note: See TracBrowser for help on using the repository browser.