Changeset 1897 for trunk/makefile


Ignore:
Timestamp:
Aug 14, 2022, 9:14:53 PM (3 years ago)
Author:
Gregg Young
Message:

Add FM4_NOWARN_DSPACE this is to quiet FM/4 by skipping disk space check; used for AN main frame backup solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r1890 r1897  
    3333# 13 Aug 11 GKY Build xqs and sym files as part of dll and all targets
    3434# 25 Jan 20 SHL Add PMPRINTF support - PMPRINTF_OPT
     35# 06 Aug 22 GKY Add FM4_NOWARN_DSPACE - FM4_NOWARN_DSPACE_OPT
    3536
    3637# Environment - see makefile_pre.mk and dll\makefile
     
    7374dll: .symbolic
    7475  cd dll
    75   $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT)
     76  $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE)
    7677  cd ..
    7778
    7879dllsyms: .symbolic
    7980  cd dll
    80   $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) syms
     81  $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE) syms
    8182  cd ..
    8283
     
    9091
    9192allexe: *.mak .symbolic
    92   @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT)
     93  @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE)
    9394
    9495# make SYM files
    9596
    9697exesyms: *.mak .symbolic
    97   @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) sym
     98  @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE) sym
    9899
    99100# make WPI files
     
    110111lxliteexe: *.mak .symbolic
    111112!ifndef DEBUG
    112   @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) lxlite
     113  @for %f in ($<) do $(MAKE) -h -f %f $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE) lxlite
    113114!endif
    114115
     
    119120  $(MAKE) -h lxlite
    120121# FIXME to be gone
    121 # $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) lxlite
     122# $(MAKE) -h $(__MAKEOPTS__) $(DEBUG_OPT) $(FORTIFY_OPT) $(PMPRINTF_OPT) $(FM4_NOWARN_DSPACE) lxlite
    122123  cd ..
    123124!endif
Note: See TracChangeset for help on using the changeset viewer.