summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0b49396..148507b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-SRC = is.c
-FLAGS = -g -Wall
TARGET = is
+SRC = $(TARGET).c
+FLAGS = -g -Wall
$(TARGET):
cc $(FLAGS) $(SRC) -o $(TARGET)