Changeset 1576


Ignore:
Timestamp:
Jun 21, 2011, 4:42:11 PM (14 years ago)
Author:
Gregg Young
Message:

Changes to support .xqs files for the exes and add them to the "clean" targets. Make loading as much code, data and resources as possible in high memory the default (still need to added a low memory build option).

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makefile

    r1569 r1576  
    3838# 13 Apr 10 SHL Drop HIMEM support
    3939# 09 Feb 11 SHL Add exceptq .xqs support
     40# 21 Jun 11 GKY Make high memory builds the default
    4041
    4142# Environment: see makefile_pre.mk
     
    197198     $(BASERES).res &
    198199     $(BASERES).dll &
     200     loadhigh &
    199201     ipf\fm3.hlp
    200202     
     
    319321  -del *.obj
    320322  -del *.res
    321   -del *.sym
     323  -del *.sym
     324  -del *.xqs
     325 
  • trunk/makefile

    r1516 r1576  
    2727# 12 Jul 09 GKY Allow FM/2 to load in high memory call exehdr /hi
    2828# 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)
    2931
    3032# Environment - see makefile_pre.mk and dll\makefile
     
    132134  -del *.res
    133135  -del *.sym
     136  -del *.xqs
    134137
    135138distclean: clean .symbolic
  • trunk/makefile_post.mk

    r1468 r1576  
    1313# 14 Dec 08 SHL Drop EXCEPTQ support - will not be used
    1414# 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
    1517
    1618!ifndef MAKERES
     
    2729  @echo.
    2830  $(RC) $(RCFLAGS2) $(BASE).res $@
     31  !exehdr /hi:3 $@
    2932
    3033$(BASE).lrf: $(__MAKEFILES__) .explicit
     
    3538   @%append $^@ library os2386.lib
    3639
    37 $(BASE).sym: $(BASE).map .explicit
     40$(BASE).sym: $(BASE).map $(BASE).xqs .explicit
    3841   @echo Processing: $?
    39    -perl debugtools\mapsymw.pl $?
     42   -perl debugtools\mapsymw.pl $?   
     43   -mapxqs $?
    4044
    4145!else
     
    6973  -del $(BASE).obj
    7074  -del $(BASE).res
     75  -del $(BASE).sym
     76  -del $(BASE).xqs
    7177
    7278# The end
  • trunk/makefile_pre.mk

    r1514 r1576  
    2121# 12 Jul 09 GKY Allow FM/2 to load in high memory call exehdr /hi
    2222# 13 Apr 10 SHL Drop HIMEM support
     23# 21 Jun 11 GKY Add exceptq .xqs support
    2324
    2425# Environment: see dll\makefile
     
    130131
    131132.SUFFIXES:
    132 .SUFFIXES: .obj .c .res .rc .ipf .sym .map
     133.SUFFIXES: .obj .c .res .rc .ipf .sym .map .xqs
    133134
    134135!ifdef USE_RC
Note: See TracChangeset for help on using the changeset viewer.