aboutsummaryrefslogtreecommitdiff
path: root/5.20/Makefile
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-04-22 17:46:20 +0530
committersinanmohd <sinan@firemail.cc>2023-04-23 21:30:25 +0530
commit2f3d854c1226108907651a8fcf9228767eee9742 (patch)
treea5ba21f54083291fcc2fb57b5ff676d94883afee /5.20/Makefile
parentc14dab7f3a1cf72619fadce9b81b55426dc0b32e (diff)
5.20: initial commit
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)