Changeset 1890 for trunk/makefile


Ignore:
Timestamp:
Jan 30, 2020, 7:39:42 AM (6 years ago)
Author:
Steven Levine
Message:

Add PMPRINTF enable support to makefiles.
Correct PMPRINTF debug macro enables in sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r1620 r1890  
    33
    44# Copyright (c) 1993-98 M. Kimes
    5 # Copyright (c) 2002, 2010 Steven H. Levine
     5# Copyright (c) 2002-2010 Steven H. Levine
    66
    77# 24 May 05 SHL Add clean and cleanobj target
     
    3232# 04 Jul 11 GKY Add eFTE backup files (*~) to clean target
    3333# 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
    3435
    3536# Environment - see makefile_pre.mk and dll\makefile
     
    7273dll: .symbolic
    7374  cd dll
    74   $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT)
     75  $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT)
    7576  cd ..
    7677
    7778dllsyms: .symbolic
    7879  cd dll
    79   $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) syms
     80  $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) syms
    8081  cd ..
    8182
     
    8990
    9091allexe: *.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)
    9293
    9394# make SYM files
    9495
    9596exesyms: *.mak .symbolic
    96   @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) sym
     97  @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) sym
    9798
    9899# make WPI files
     
    109110lxliteexe: *.mak .symbolic
    110111!ifndef DEBUG
    111   @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) lxlite
     112  @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) lxlite
    112113!endif
    113114
     
    117118  cd dll
    118119  $(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
    120122  cd ..
    121123!endif
     
    147149!include makefile_post.mk
    148150
    149 # The end
     151# eof
Note: See TracChangeset for help on using the changeset viewer.