From 77be11f69699c5af01ed0123831bf06fbedc58b4 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 10 May 2018 17:25:12 -0400 Subject: [PATCH] update makefile. --- GNUmakefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7ea851a..3fbd15c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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 $@