diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,15 +1,15 @@ PREFIX ?= /usr/local WFLAGS ?= -Wall -Wextra -Wmissing-prototypes -Wdiv-by-zero -Wbad-function-cast -Wcast-align -Wcast-qual -Wfloat-equal -Wmissing-declarations -Wnested-externs -Wno-unknown-pragmas -Wpointer-arith -Wredundant-decls -Wstrict-prototypes -Wswitch-enum -Wno-type-limits CFLAGS ?= -O3 -mtune=native -fno-exceptions -flto $(WFLAGS) -CPPFLAGS += -I. -Iext/tweetnacl -Iext/tweetpwhash -Iext/util +CPPFLAGS += -I. -Iext STRIP ?= strip -OBJ = ext/tweetnacl/tweetnacl.o ext/tweetpwhash/tweetpwhash.o ext/util/util.o src/tweetpipe.o src/safe_rw.o +OBJ = ext/tweetnacl.o ext/tweetpwhash.o ext/util.o src/tweetpipe.o src/safe_rw.o SRC = \ - ext/tweetnacl/tweetnacl.c \ - ext/tweetpwhash/tweetpwhash.c \ - ext/util/util.c \ + ext/tweetnacl.c \ + ext/tweetpwhash.c \ + ext/util.c \ src/common.h \ src/tweetpipe.c \ src/tweetpipe_p.h \ |