aboutsummaryrefslogtreecommitdiff
path: root/6.1/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '6.1/Makefile')
-rw-r--r--6.1/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/6.1/Makefile b/6.1/Makefile
new file mode 100644
index 0000000..eaee48d
--- /dev/null
+++ b/6.1/Makefile
@@ -0,0 +1,11 @@
+objects = main.o getch.o word.o key.o
+
+keys : $(objects)
+ cc -o keys $(objects)
+
+main.o : word.h key.h
+word.o : getch.h
+
+.PHONY : clean
+clean :
+ rm keys $(objects)