aboutsummaryrefslogtreecommitdiff
path: root/5.20/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '5.20/Makefile')
-rw-r--r--5.20/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/5.20/Makefile b/5.20/Makefile
new file mode 100644
index 0000000..dec76b9
--- /dev/null
+++ b/5.20/Makefile
@@ -0,0 +1,13 @@
+objects = main.o token.o getch.o err.o dcl.o
+
+dcl : $(objects)
+ cc -o dcl $(objects)
+
+main.o token.o : getch.h
+main.o : dcl.h
+dcl.o err.o main.o : token.h
+getch.o dcl.o : err.h
+
+.PHONY : clean
+clean :
+ rm dcl $(objects)