aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: e4fdb51b57f6f12e0c54b40c85bc6c53c12993fa (plain)
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
AM_CPPFLAGS = -I$(VARNISHSRC)/include -I$(VARNISHSRC)

dist_man_MANS = vmod_basicauth.3

vmoddir = $(VMODDIR)
vmod_LTLIBRARIES = libvmod_basicauth.la

libvmod_basicauth_la_LDFLAGS = -module -export-dynamic -avoid-version
libvmod_basicauth_la_LIBADD=-lcrypt

libvmod_basicauth_la_SOURCES = \
	basicauth.h\
	md5.c\
	sha1.c\
	sha1.h\
	vcc_if.c \
	vcc_if.h \
	vmod_basicauth.c

vcc_if.c vcc_if.h: $(VARNISHSRC)/lib/libvmod_std/vmod.py $(top_srcdir)/src/vmod_basicauth.vcc
	@PYTHON@ $(VARNISHSRC)/lib/libvmod_std/vmod.py $(top_srcdir)/src/vmod_basicauth.vcc

EXTRA_DIST = \
	vmod_basicauth.vcc

CLEANFILES = $(builddir)/vcc_if.c $(builddir)/vcc_if.h

Return to:

Send suggestions and report system problems to the System administrator.