diff options
author | Matt Strapp <strap012@umn.edu> | 2020-12-05 11:09:22 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-12-05 11:09:22 -0600 |
commit | 741eb8467ca0b8464261f37a6ab3ec130eb8078c (patch) | |
tree | e3e00517144ad5daf9666d2d95c423e232bc011b /P4/Makefile | |
parent | add finishing "touches" (diff) | |
download | csci4061-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 'P4/Makefile')
-rw-r--r-- | P4/Makefile | 9 |
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 |