Changeset 1661 for trunk/makefile_post.mk
- Timestamp:
- Jan 26, 2012, 1:00:12 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile_post.mk
r1624 r1661 2 2 # $Id$ 3 3 4 # Copyright (c) 2002, 20 09Steven H. Levine4 # Copyright (c) 2002, 2012 Steven H. Levine 5 5 6 6 # 16 Aug 05 SHL Clean up … … 16 16 # 21 Jun 11 GKY Make high memory builds the default resources only for exes 17 17 # 04 Jul 11 GKY Make xqs files an explicit target so they will be rebuild if lost somehow. 18 # 25 Jan 12 SHL Renamae LOW -> NOHIGHMEM and allow set from enviroment 18 19 19 20 !ifndef MAKERES … … 22 23 # Common parameters go in .lrf 23 24 # Executable specific paramters go in .def 25 # Put 32-bit data in high memoryt unless overridden 26 27 !ifndef NOHIGHMEM 28 !ifdef %NOHIGHMEM 29 NOHIGHMEM=$(%NOHIGHMEM) 30 !endif 31 !endif 24 32 25 33 $(BASE).exe: $(BASE).lrf $(BASE).obj $(BASE).res $(BASE).def .explicit … … 30 38 @echo. 31 39 $(RC) $(RCFLAGS2) $(BASE).res $@ 32 !ifndef LOW33 !exehdr /hi :3 $@40 !ifndef NOHIGHMEM 41 !exehdr /highmem:3 $@ 34 42 !endif 35 43 36 LOW = 44 # 2012-01-25 SHL fixme to be gone - does not undefine 45 # NOHIGHMEM = 37 46 38 47 $(BASE).lrf: $(__MAKEFILES__) .explicit … … 49 58 $(BASE).sym: $(BASE).map .explicit 50 59 @echo Processing: $? 51 -perl debugtools\mapsymw.pl $? 60 -perl debugtools\mapsymw.pl $? 52 61 53 62 !else
Note:
See TracChangeset
for help on using the changeset viewer.