Use stuff from the common dir

git-svn-id: svn://svn.cc65.org/cc65/trunk@73 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-06-14 10:01:36 +00:00
parent ecdce2cd16
commit c2b19b5e00
8 changed files with 65 additions and 333 deletions

View File

@@ -9,9 +9,10 @@ LDFLAGS=
OBJS = error.o \
global.o \
main.o \
mem.o \
spawn.o
LIBS = ../common/common.a
EXECS = cl65
@@ -25,8 +26,8 @@ all: depend
endif
cl65: $(OBJS)
$(CC) $(LDFLAGS) -o cl65 $(CFLAGS) $(OBJS)
cl65: $(OBJS) $(LIBS)
$(CC) $(LDFLAGS) -o cl65 $(CFLAGS) $(OBJS) $(LIBS)
clean:
rm -f *~ core

View File

@@ -65,8 +65,7 @@ CCCFG = -bt=$(TARGET) -d1 -onatx -zp4 -5 -zq -w2
OBJS = error.obj \
global.obj \
main.obj \
mem.obj
main.obj
.PRECIOUS $(OBJS:.obj=.c)
@@ -90,7 +89,6 @@ NAME $<
FILE error.obj
FILE global.obj
FILE main.obj
FILE mem.obj
|
@@ -99,6 +97,6 @@ clean:
@if exist cl65.exe del cl65.exe
strip:
@-wstrip cl65.exe
@-wstrip cl65.exe