diff options
author | nirav <nirav@teisuu.com> | 2019-09-21 13:30:12 +0000 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2019-09-21 13:30:12 +0000 |
commit | 1c79bf5f79365739fd07f08e0d21e973537fc5ec (patch) | |
tree | 3deb33f43fb15e63eeb8814ee616a78765595628 /Makefile | |
parent | d5f4022408249c5a513ae795b7b360854bd75a6c (diff) | |
download | gopherd-1c79bf5f79365739fd07f08e0d21e973537fc5ec.tar.gz gopherd-1c79bf5f79365739fd07f08e0d21e973537fc5ec.zip |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ .POSIX: CC=cc -CFLAGS=-ansi -Wall -Wextra -pedantic +CFLAGS=-ansi -D_POSIX_C_SOURCE=200809L -Wall -Wextra -pedantic all: gopherd -SRC=main.c log.c gopher.c +SRC=main.c log.c gopher.c gph.c OBJ=$(SRC:.c=.o) gopherd: $(OBJ) |