source: abuse/branches/pd/imlib/port/dos4gw/makefile.wat @ 528

Last change on this file since 528 was 49, checked in by Sam Hocevar, 15 years ago
  • Imported original public domain release, for future reference.
File size: 1006 bytes
Line 
1all : opt
2
3debug : ipxtest.exe
4        echo Made debug
5
6opt : ipxtesto.exe
7        echo Made opt
8
9WATCOM_ipxtest_debug_o_files = &
10        .\wat\debug\ipxtest.obj
11
12ipxtest.exe : $(WATCOM_ipxtest_debug_o_files)
13        wlink @ipxtest.lnk
14
15.\wat\debug\ipxtest.obj : ipxtest.c
16        set include=$(%WATCOM)\h;../../include
17        wpp386 ipxtest.c -fo=.\wat\debug\ipxtest.obj /zq /d2 -DMANAGE_MEM
18
19.\wat\debug\ipxtest.obj : ../../include\system.h
20.\wat\debug\ipxtest.obj : ../../include\macs.hpp
21.\wat\debug\ipxtest.obj : ../../include\doscall.hpp
22.\wat\debug\ipxtest.obj : doscall.c
23
24WATCOM_ipxtesto_opt_o_files = &
25        .\wat\opt\ipxtest.obj
26
27ipxtesto.exe : $(WATCOM_ipxtesto_opt_o_files)
28        wlink @ipxtesto.lnk
29
30.\wat\opt\ipxtest.obj : ipxtest.c
31        set include=$(%WATCOM)\h;../../include
32        wpp386 ipxtest.c -fo=.\wat\opt\ipxtest.obj /omaxne /zp1 /zq -DNO_CHECK -DMANAGE_MEM
33
34.\wat\opt\ipxtest.obj : ../../include\system.h
35.\wat\opt\ipxtest.obj : ../../include\macs.hpp
36.\wat\opt\ipxtest.obj : ../../include\doscall.hpp
37.\wat\opt\ipxtest.obj : doscall.c
38
Note: See TracBrowser for help on using the repository browser.