summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a2e394d..bc5c865 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 07
+LDFLAGS=-lm
+EXEC=01 02 03 04 05 06 07 08
all: $(EXEC)
@@ -29,5 +29,8 @@ all: $(EXEC)
07: input.o 07.o
$(CC) -o $@ $> $(LDFLAGS)
+08: input.o 08.o
+ $(CC) -o $@ $> $(LDFLAGS)
+
clean:
rm -rf *.o $(EXEC)