aboutsummaryrefslogtreecommitdiffstats
path: root/P4/Makefile
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2020-12-05 11:09:22 -0600
committerMatt Strapp <strap012@umn.edu>2020-12-05 11:09:22 -0600
commit741eb8467ca0b8464261f37a6ab3ec130eb8078c (patch)
treee3e00517144ad5daf9666d2d95c423e232bc011b /P4/Makefile
parentadd finishing "touches" (diff)
downloadcsci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar.gz
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar.bz2
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar.lz
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar.xz
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.tar.zst
csci4061-741eb8467ca0b8464261f37a6ab3ec130eb8078c.zip
Start P4
Diffstat (limited to '')
-rw-r--r--P4/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/P4/Makefile b/P4/Makefile
new file mode 100644
index 0000000..6f8b473
--- /dev/null
+++ b/P4/Makefile
@@ -0,0 +1,9 @@
+CC = gcc
+CFLAGS = -D_REENTRANT
+LDFLAGS = -lpthread -pthread
+
+web_server: server.c util.c
+ ${CC} -Wall -o web_server server.c util.c ${LDFLAGS}
+
+clean:
+ rm web_server