aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2025-10-30 23:37:15 +0100
committerGravatar Tim Segers <tsegers@pm.me>2025-11-01 10:24:56 +0100
commit0aecf90263a2548c5d31c7bce6b978245e2ca16e (patch)
treedcb04f1bcfe1f3d287b91d255049c80ddd8c2099 /Makefile
parentbdb43c486b1f5dbd8eedf866b4161b31f1e5d75a (diff)
downloadtweetpipe-0aecf90263a2548c5d31c7bce6b978245e2ca16e.tar.gz
Deduce ext depth
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index fb589f6..28209e9 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \