Changeset 1576
- Timestamp:
- Jun 21, 2011, 4:42:11 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makefile
r1569 r1576 38 38 # 13 Apr 10 SHL Drop HIMEM support 39 39 # 09 Feb 11 SHL Add exceptq .xqs support 40 # 21 Jun 11 GKY Make high memory builds the default 40 41 41 42 # Environment: see makefile_pre.mk … … 197 198 $(BASERES).res & 198 199 $(BASERES).dll & 200 loadhigh & 199 201 ipf\fm3.hlp 200 202 … … 319 321 -del *.obj 320 322 -del *.res 321 -del *.sym 323 -del *.sym 324 -del *.xqs 325 -
trunk/makefile
r1516 r1576 27 27 # 12 Jul 09 GKY Allow FM/2 to load in high memory call exehdr /hi 28 28 # 13 Apr 10 SHL Drop HIMEM support 29 # 21 Jun 11 GKY Add exceptq .xqs support 30 # 21 Jun 11 GKY Make high memory builds the default (resources only for exes) 29 31 30 32 # Environment - see makefile_pre.mk and dll\makefile … … 132 134 -del *.res 133 135 -del *.sym 136 -del *.xqs 134 137 135 138 distclean: clean .symbolic -
trunk/makefile_post.mk
r1468 r1576 13 13 # 14 Dec 08 SHL Drop EXCEPTQ support - will not be used 14 14 # 24 Jul 09 SHL Comments 15 # 21 Jun 11 GKY Add exceptq .xqs support 16 # 21 Jun 11 GKY Make high memory builds the default resources only for exes 15 17 16 18 !ifndef MAKERES … … 27 29 @echo. 28 30 $(RC) $(RCFLAGS2) $(BASE).res $@ 31 !exehdr /hi:3 $@ 29 32 30 33 $(BASE).lrf: $(__MAKEFILES__) .explicit … … 35 38 @%append $^@ library os2386.lib 36 39 37 $(BASE).sym: $(BASE).map .explicit40 $(BASE).sym: $(BASE).map $(BASE).xqs .explicit 38 41 @echo Processing: $? 39 -perl debugtools\mapsymw.pl $? 42 -perl debugtools\mapsymw.pl $? 43 -mapxqs $? 40 44 41 45 !else … … 69 73 -del $(BASE).obj 70 74 -del $(BASE).res 75 -del $(BASE).sym 76 -del $(BASE).xqs 71 77 72 78 # The end -
trunk/makefile_pre.mk
r1514 r1576 21 21 # 12 Jul 09 GKY Allow FM/2 to load in high memory call exehdr /hi 22 22 # 13 Apr 10 SHL Drop HIMEM support 23 # 21 Jun 11 GKY Add exceptq .xqs support 23 24 24 25 # Environment: see dll\makefile … … 130 131 131 132 .SUFFIXES: 132 .SUFFIXES: .obj .c .res .rc .ipf .sym .map 133 .SUFFIXES: .obj .c .res .rc .ipf .sym .map .xqs 133 134 134 135 !ifdef USE_RC
Note:
See TracChangeset
for help on using the changeset viewer.