Changeset 177 for branches/smbpdr-1.0/makefile
- Timestamp:
- Apr 18, 2009, 12:09:06 PM (17 years ago)
- File:
-
- 1 edited
-
branches/smbpdr-1.0/makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/smbpdr-1.0/makefile
r175 r177 1 # Makefile for VAC (doesn't work at the moment)2 1 BASE=SMB 2 DEF_PORTNAME=SMB 3 3 4 4 ICCOPTS=-Gd-e- -Sp1 -Ss+ -Ms -C+ -Fo$@ -Dcdecl= -D_cdecl= -Rn -O -Wpro -Q+ -Yp+ -Ss+ … … 10 10 !ENDIF 11 11 12 $(BASE).PDR: $(BASE).OBJ \ 12 $(BASE).PDR: $(BASE).DLL 13 copy $(BASE).DLL $(BASE).PDR 14 del $(BASE).DLL 15 16 $(BASE).DLL: $(BASE).OBJ \ 13 17 $(BASE).RES 14 18 ILINK $(LINKOPTS) @<< 15 19 $(BASE) 16 $(BASE). PDR20 $(BASE).DLL 17 21 $(BASE) 18 22 OS2386 19 23 $(BASE) 20 24 << 21 RC $(BASE).RES $(BASE).PDR 25 RC $(BASE).RES $(BASE).DLL 26 ea2 -e DEFAULT_PORT=$(DEF_PORTNAME) $(BASE).DLL 22 27 23 28 $(BASE).RES: $(BASE).RC \ … … 28 33 $(BASE).H 29 34 ICC $(ICCOPTS) $(BASE).C 35 36 clean: 37 if exist $(BASE).PDR del $(BASE).PDR 38 if exist $(BASE).DLL del $(BASE).DLL 39 if exist $(BASE).SYM del $(BASE).SYM 40 if exist $(BASE).MAP del $(BASE).MAP 41 if exist $(BASE).RES del $(BASE).RES 42 if exist $(BASE).OBJ del $(BASE).OBJ
Note:
See TracChangeset
for help on using the changeset viewer.
