summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4a227da..0000000
--- a/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-CC = gcc
-NAME = simple_snake
-LIBS = -lncurses -lm
-
-$(NAME): draw.o body.o
- $(CC) -o $(NAME) draw.o body.o $(LIBS)
-
-draw.o: draw.c include/body.h
-body.o: body.c include/body.h
-
-.PHONY: clean
-clean:
- rm *.o $(NAME)