aboutsummaryrefslogtreecommitdiffstats
path: root/P3/Makefile
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2020-11-13 18:21:58 -0600
committerMatt Strapp <strap012@umn.edu>2020-11-13 18:21:58 -0600
commit36f0d7ecd656bced12a72d0ae50c296f8121e2f7 (patch)
tree7af80f6d6684ef56402a1e873ce0cb1467794d0b /P3/Makefile
parentAdded comments (diff)
downloadcsci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar.gz
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar.bz2
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar.lz
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar.xz
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.tar.zst
csci4061-36f0d7ecd656bced12a72d0ae50c296f8121e2f7.zip
Add P3 files
Diffstat (limited to 'P3/Makefile')
-rw-r--r--P3/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/P3/Makefile b/P3/Makefile
new file mode 100644
index 0000000..921a089
--- /dev/null
+++ b/P3/Makefile
@@ -0,0 +1,9 @@
+CC = gcc
+CFLAGS = -D_REENTRANT
+LDFLAGS = -lpthread -pthread
+
+web_server: server.c
+ ${CC} -Wall -o web_server server.c util.o ${LDFLAGS}
+
+clean:
+ rm web_server webserver_log