Changeset 1890 for trunk/makefile
- Timestamp:
- Jan 30, 2020, 7:39:42 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile
r1620 r1890 3 3 4 4 # Copyright (c) 1993-98 M. Kimes 5 # Copyright (c) 2002 ,2010 Steven H. Levine5 # Copyright (c) 2002-2010 Steven H. Levine 6 6 7 7 # 24 May 05 SHL Add clean and cleanobj target … … 32 32 # 04 Jul 11 GKY Add eFTE backup files (*~) to clean target 33 33 # 13 Aug 11 GKY Build xqs and sym files as part of dll and all targets 34 # 25 Jan 20 SHL Add PMPRINTF support - PMPRINTF_OPT 34 35 35 36 # Environment - see makefile_pre.mk and dll\makefile … … 72 73 dll: .symbolic 73 74 cd dll 74 $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) 75 $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) 75 76 cd .. 76 77 77 78 dllsyms: .symbolic 78 79 cd dll 79 $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) syms80 $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) syms 80 81 cd .. 81 82 … … 89 90 90 91 allexe: *.mak .symbolic 91 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) 92 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) 92 93 93 94 # make SYM files 94 95 95 96 exesyms: *.mak .symbolic 96 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) sym97 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) sym 97 98 98 99 # make WPI files … … 109 110 lxliteexe: *.mak .symbolic 110 111 !ifndef DEBUG 111 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) lxlite112 @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) lxlite 112 113 !endif 113 114 … … 117 118 cd dll 118 119 $(MAKE) -h lxlite 119 # $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) lxlite 120 # FIXME to be gone 121 # $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) lxlite 120 122 cd .. 121 123 !endif … … 147 149 !include makefile_post.mk 148 150 149 # The end151 # eof
Note:
See TracChangeset
for help on using the changeset viewer.