aboutsummaryrefslogtreecommitdiff
path: root/7.1/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '7.1/Makefile')
-rw-r--r--7.1/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/7.1/Makefile b/7.1/Makefile
new file mode 100644
index 0000000..ae5b7bd
--- /dev/null
+++ b/7.1/Makefile
@@ -0,0 +1,8 @@
+lower upper :
+ gcc -o lower main.c
+ cp lower upper
+
+.PHONY : clean
+clean:
+ rm lower upper
+