update makefile.

This commit is contained in:
Kelvin Sherlock 2018-05-10 17:25:12 -04:00
parent db779e12e6
commit 77be11f696
1 changed files with 6 additions and 2 deletions

View File

@ -8,11 +8,15 @@ OPTIMIZE ?= 79
CFLAGS = -w-1 -O $(OPTIMIZE)
ASMFLAGS =
.PHONY: all clean clobber
all: marlene
marlene: o/marlene.a $(OBJS)
$(CC) $(OBJS) -o $@
$(CC) $^ -o $@
darlene: o/darlene.a $(OBJS)
$(CC) $(OBJS) -o $@
$(CC) $^ -o $@