summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 97c64b6..a2e394d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CC=cc
CFLAGS=-std=c1x -W -Wall -g
LDFLAGS=
-EXEC=01 02 03 04 05 06
+EXEC=01 02 03 04 05 06 07
all: $(EXEC)
@@ -26,5 +26,8 @@ all: $(EXEC)
06: input.o list.o 06.o
$(CC) -o $@ $> $(LDFLAGS)
+07: input.o 07.o
+ $(CC) -o $@ $> $(LDFLAGS)
+
clean:
rm -rf *.o $(EXEC)