aboutsummaryrefslogtreecommitdiff
path: root/sync/makefile
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2017-11-25 01:31:39 -0500
committerTucker Evans <tuckerevans24@gmail.com>2017-11-25 01:31:39 -0500
commit561079b325265af54c3d1d897863f21fa641e471 (patch)
treedc09421ea070625f9a7e00e1a82bca33df07b397 /sync/makefile
parent257b96f8012a82e0fa2fb998e965e0a1712213c9 (diff)
CS3871/assignments/sync: Fixed arithmatic error in reader/writer
Fixed assorted bugs Added makefile
Diffstat (limited to 'sync/makefile')
-rw-r--r--sync/makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/sync/makefile b/sync/makefile
new file mode 100644
index 0000000..dd9c463
--- /dev/null
+++ b/sync/makefile
@@ -0,0 +1,5 @@
+sync: sync.c reader.c writer.c
+ cc -o sync sync.c
+ cc -o reader reader.c
+ cc -o writer writer.c
+