Updated Makefiles to be slightly faster, and also added automatic dependencies. See AUTODEP variable, and the new "make depends" target.

This commit is contained in:
waltje
2017-09-25 20:46:14 -04:00
parent 778dbbd4f5
commit 0b50122be4
2 changed files with 258 additions and 778 deletions

View File

@@ -10,7 +10,7 @@
# settings, so we can avoid changing the main one for all of
# our local setups.
#
# Version: @(#)Makefile.local 1.0.2 2017/05/23
# Version: @(#)Makefile.local 1.0.3 2017/09/25
#
# Author: Fred N. van Kempen, <decwiz@yahoo.com>
#
@@ -20,16 +20,16 @@
#########################################################################
DEBUG = y
OPTIM = n
COPTIM = -O1
DEBUG := y
OPTIM := n
COPTIM := -O1
# Name of the executable.
PROG = yourexe
PROG := yourexe
# Various compile-time options.
STUFF = #-DROM_TRACE=0xC800 -DIO_TRACE=0x70
EXTRAS = #-DYOURNAME
STUFF := #-DROM_TRACE=0xC800 -DIO_TRACE=0x70
EXTRAS := #-DYOURNAME

File diff suppressed because it is too large Load Diff