diff options
Diffstat (limited to 'CS3871/sync/makefile')
-rw-r--r-- | CS3871/sync/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CS3871/sync/makefile b/CS3871/sync/makefile new file mode 100644 index 0000000..dd9c463 --- /dev/null +++ b/CS3871/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 + |