summaryrefslogtreecommitdiffstats
path: root/hw1/Makefile
diff options
context:
space:
mode:
authorLAN-TW <lantw44@gmail.com>2013-10-08 00:40:19 +0800
committerLAN-TW <lantw44@gmail.com>2013-10-08 18:19:50 +0800
commit8ecda287786e0ebc1d0061c6e6895e694820af45 (patch)
treef1834f11e73ea5109d7e8ecc3bd6b01c132b6702 /hw1/Makefile
downloadsp2013-HW0.tar.gz
sp2013-HW0.tar.zst
sp2013-HW0.zip
HW1: Import files provided by TAHW0
Diffstat (limited to 'hw1/Makefile')
-rw-r--r--hw1/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw1/Makefile b/hw1/Makefile
new file mode 100644
index 0000000..d3180e5
--- /dev/null
+++ b/hw1/Makefile
@@ -0,0 +1,6 @@
+all: server.c
+ gcc server.c -o write_server
+ gcc server.c -D READ_SERVER -o read_server
+
+clean:
+ rm -f read_server write_server