summaryrefslogtreecommitdiff
path: root/bcc/Makefile
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2003-09-20 19:44:36 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:49 +0200
commit22950ba3df3a0b739786243679d69cd4094e8b20 (patch)
tree942907e918e556d340dcbcb8ffdc0f7d020a275e /bcc/Makefile
parent5613ba3c0749fa494d35c4dc36b57c5b4e6edb55 (diff)
downloaddev86-22950ba3df3a0b739786243679d69cd4094e8b20.tar.gz
Import Dev86src-0.16.13.tar.gzv0.16.13
Diffstat (limited to 'bcc/Makefile')
-rw-r--r--bcc/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/bcc/Makefile b/bcc/Makefile
index 93b122c..8c2c19b 100644
--- a/bcc/Makefile
+++ b/bcc/Makefile
@@ -12,7 +12,7 @@ BINDIR =$(PREFIX)/bin
LIBDIR =$(LIBPRE)/lib/bcc
BCCDEFS =-DLOCALPREFIX=$(LIBPRE) -DBINDIR=$(BINDIR) -DDEFARCH=0
-BCFLAGS=$(ANSI) $(CFLAGS) $(LDFLAGS) -DVERSION='"$(VERSION)"'
+BCFLAGS=$(ANSI) $(CFLAGS) $(LDFLAGS)
OBJS = bcc-cc1.o codefrag.o debug.o declare.o express.o exptree.o floatop.o \
function.o gencode.o genloads.o glogcode.o hardop.o input.o label.o \
@@ -28,16 +28,16 @@ install: all
install -m 755 bcc-cc1 $(LIBDIR)/bcc-cc1
bcc: bcc.c
- $(CC) $(BCFLAGS) $(BCCDEFS) $^ -o $@
+ $(CC) $(BCFLAGS) $(BCCDEFS) bcc.c -o $@
ncc: bcc.c
- $(CC) $(BCFLAGS) -DL_TREE -DDEFARCH=0 $^ -o $@
+ $(CC) $(BCFLAGS) -DL_TREE -DDEFARCH=0 bcc.c -o $@
bcc09: bcc.c
- $(CC) $(BCFLAGS) -DMC6809 $(BCCDEFS) $^ -o $@
+ $(CC) $(BCFLAGS) -DMC6809 $(BCCDEFS) bcc.c -o $@
ccc: bcc.c
- $(CC) $(BCFLAGS) -DCCC $(BCCDEFS) $^ -o $@
+ $(CC) $(BCFLAGS) -DCCC $(BCCDEFS) bcc.c -o $@
bcc-cc1: $(OBJS)
$(CC) $(BCCARCH) $(LDFLAGS) $(OBJS) -o bcc-cc1