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