aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2016-01-15 17:25:16 -0500
committerFranklin Wei <git@fwei.tk>2016-01-15 17:25:16 -0500
commitb8a5c11cbd8a0514754558892d9bbd620345799c (patch)
tree5687d0e98212c7067c5049bd3914045595c75d21 /Makefile
parentabe9f416501c5354be3ce292b4220000edf021ab (diff)
downloadnetcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.zip
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.gz
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.bz2
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.xz
refactor headers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6b5b0b3..9b0fbaa 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,10 @@ PLATFORM = unix
NETCOSM_SRC = $(shell cat SOURCES)
NETCOSM_OBJ := $(NETCOSM_SRC:.c=.o)
-CFLAGS = -O3 -g -I src/ -I target/$(PLATFORM) -Wall -Wextra -Wshadow -std=gnu99 -fno-strict-aliasing
+CFLAGS = -O3 -g -I src/ -I export/include -Wall -Wextra -Wshadow -std=gnu99 -fno-strict-aliasing
LDFLAGS = -lgcrypt -lev
-HEADERS = src/netcosm.h src/hash.h src/telnet.h src/userdb.h
+HEADERS = src/hash.h src/telnet.h src/userdb.h
all: $(OUT)/$(PLATFORM).bin Makefile $(HEADERS)