summaryrefslogtreecommitdiffstats
path: root/subs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'subs/Makefile')
-rw-r--r--subs/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/subs/Makefile b/subs/Makefile
new file mode 100644
index 0000000..e3ae446
--- /dev/null
+++ b/subs/Makefile
@@ -0,0 +1,11 @@
+CC = klcc
+CFLAGS = -Wall
+TARGET = subs
+
+all: $(TARGET)
+
+$(TARGET): $(TARGET).c
+ $(CC) $(CFLAGS) $(TARGET).c -o $(TARGET)
+
+clean:
+ rm -f $(TARGET)