summaryrefslogtreecommitdiff
path: root/demo-project/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'demo-project/Makefile.in')
-rw-r--r--demo-project/Makefile.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/demo-project/Makefile.in b/demo-project/Makefile.in
new file mode 100644
index 0000000..8f3f4f0
--- /dev/null
+++ b/demo-project/Makefile.in
@@ -0,0 +1,9 @@
+vpath %.c ${SRC_DIR}
+vpath %.h ${SRC_DIR}
+
+hello: main.o hello.o
+main.o: main.c hello.h
+hello.o: hello.c hello.h
+
+clean:
+ rm -f hello main.o hello.o