From 40347b8e9a3aadd8c8dd33e0a914710c40c9cb6a Mon Sep 17 00:00:00 2001 From: HalosGhost Date: Thu, 21 Aug 2014 00:51:52 -0500 Subject: [PATCH] install and uninstall targets are PHONY --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6150a2..d44a748 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ TESTS_OBJECTS = $(TESTS_DIR)/frame_test.o \ $(TESTS_DIR)/test_helper.o \ $(TESTS_DIR)/test_helper_test.o \ -.PHONY: test clean +.PHONY: test clean install uninstall ttysolitaire: $(SRC_OBJECTS) $(CC) $(CFLAGS) $(SRC) -o $(EXECUTABLE) $(SRC_OBJECTS) $(LDFLAGS)