Change target handling, use modules from the common directory.

New long options: --config and --mapfile.


git-svn-id: svn://svn.cc65.org/cc65/trunk@302 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-23 14:13:24 +00:00
parent e163b07d1b
commit c3105a4e5d
5 changed files with 134 additions and 203 deletions

View File

@@ -29,7 +29,7 @@ OBJS = bin.o \
objfile.o \
scanner.o \
segments.o \
target.o
tgtcfg.o
LIBS = $(COMMON)/common.a

View File

@@ -85,7 +85,7 @@ OBJS = bin.obj \
objfile.obj \
scanner.obj \
segments.obj \
target.obj
tgtcfg.obj
LIBS = ..\common\common.lib
@@ -93,16 +93,16 @@ LIBS = ..\common\common.lib
# ------------------------------------------------------------------------------
# Main targets
all: ld65
all: ld65
ld65: ld65.exe
ld65: ld65.exe
# ------------------------------------------------------------------------------
# Other targets
ld65.exe: $(OBJS) $(LIBS)
ld65.exe: $(OBJS) $(LIBS)
$(LD) system $(SYSTEM) @&&|
DEBUG ALL
OPTION QUIET
@@ -125,7 +125,7 @@ FILE objdata.obj
FILE objfile.obj
FILE scanner.obj
FILE segments.obj
FILE target.obj
FILE tgtcfg.obj
LIBRARY ..\common\common.lib
|