summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2022-12-09 16:20:47 -0800
committerLouie Shprung <lshprung@scu.edu>2022-12-10 16:38:00 -0800
commit86c818d83e2ccf91efed4fcffd49ed3a5d44a173 (patch)
treed3c98b85cbc8b1f02138fd4e7250e6411eb9cbcd /Makefile
parentd0c84fc07e29ef8b4abb390831ddb71e5bd220cf (diff)
Replace crude Makefile with Autotools build system
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)