Begin work on X5
[khatus.git] / x5 / Makefile
diff --git a/x5/Makefile b/x5/Makefile
new file mode 100644 (file)
index 0000000..1429988
--- /dev/null
@@ -0,0 +1,16 @@
+EXECUTABLES := khatus
+CC          := gcc -Wall
+
+.PHONY: \
+  build \
+  clean \
+  rebuild
+
+build: $(EXECUTABLES)
+
+clean:
+       @find . -name '*.o' -type f -delete
+       @rm -f $(EXECUTABLES)
+
+rebuild: clean
+       @$(MAKE) -s build
This page took 0.021556 seconds and 4 git commands to generate.