blob: 2d6db2635b5bdfed1c413c4205f311259114244e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DISTRIBUTE = configure config.h NOTICE README README.configuration mod_ip.c ip2asn.c ip2asn.h Makefile.in config.h.in scan-sixxs.pl
DIST_WORKDIR = work
dist-prep::
rm -fr $(DIST_WORKDIR)
mkdir -p $(DIST_WORKDIR)
autoconf
./configure
cp -p $(DISTRIBUTE) $(DIST_WORKDIR)
dist-test: dist-prep
../dist_support/make-dist.pl --stage $(DIST_WORKDIR) --base mod_ip --branch test
dist-stable: dist-prep
../dist_support/make-dist.pl --stage $(DIST_WORKDIR) --base mod_ip --branch stable
|