-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.am
More file actions
27 lines (19 loc) · 774 Bytes
/
Makefile.am
File metadata and controls
27 lines (19 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
ACLOCAL_AMFLAGS = -I acinclude.d
noinst_LTLIBRARIES = libmodproxyjwtauth.la
noinst_DATA = mod_proxy_jwt_auth.la
AM_CPPFLAGS = ${APACHE_CFLAGS} ${JWT_CFLAGS}
AM_LDFLAGS = ${JWT_LIBS} ${APR_LDFLAGS}
libmodproxyjwtauth_la_SOURCES = mod_proxy_jwt_auth.c
AM_CFLAGS = -Wall -Werror
if NITPICK
# This is off by default as it find errors in Apache headers
AM_CFLAGS += -Wextra -Wundef -Wshadow -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute -Wredundant-decls
AM_CFLAGS += -Wmissing-noreturn -Wlogical-op -Wjump-misses-init -Wdouble-promotion -Wshadow
endif
if DEBUG
AM_CFLAGS += -DDEBUG
endif
install-exec-local:
${APXS} -i -a -n 'proxy_jwt_auth' mod_proxy_jwt_auth.la
mod_proxy_jwt_auth.la: libmodproxyjwtauth.la
${APXS} -c -o $@ $< ${APACHE_CFLAGS}