Changeset 983 for trunk/makefile


Ignore:
Timestamp:
Feb 26, 2008, 3:51:21 AM (17 years ago)
Author:
John Small
Message:

Change the SYM build code: DEBUB=1 is no longer required, new targets:
syms, exesyms and dllsyms. Also the dist target will build SYM files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r977 r983  
    4545all: dll $(BASE) allexe .symbolic
    4646
    47 dist: all lxlite wpi .symbolic
     47syms: exesyms dllsyms .symbolic
     48
     49dist: all syms lxlite wpi .symbolic
    4850
    4951# Only update resources
     
    5961  cd ..
    6062
     63dllsyms: .symbolic
     64  cd dll
     65  $(MAKE) $(__MAKEOPTS__) $(DEBUG_OPT) dllsyms
     66  cd ..
     67
    6168$(BASE): $(BASE).exe $(BASE).res .symbolic
    6269
     
    6976allexe: *.mak .symbolic
    7077   @for %f in ($<) do $(MAKE) -f %f $(__MAKEOPTS__) $(DEBUG_OPT)
     78
     79# make SYM files
     80
     81exesyms: *.mak .symbolic
     82   @for %f in ($<) do $(MAKE) -f %f $(__MAKEOPTS__) $(DEBUG_OPT) sym
     83
     84# make WPI files
    7185
    7286wpi: .symbolic
Note: See TracChangeset for help on using the changeset viewer.