-
Notifications
You must be signed in to change notification settings - Fork 55
/
Makefile.am
55 lines (39 loc) · 1.77 KB
/
Makefile.am
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
ACLOCAL_AMFLAGS = -I m4
libdir=@LIBDMARC_DIR@/lib
includedir=@LIBDMARC_DIR@/include
SUBDIRS = contrib db libopendmarc reports
if BUILD_FILTER
SUBDIRS += opendmarc
endif
auxdir = @ac_aux_dir@
AUX_DIST = $(auxdir)/install-sh $(auxdir)/missing \
$(auxdir)/mkinstalldirs \
$(auxdir)/config.guess $(auxdir)/build \
$(auxdir)/dh.m4
AUTOMAKE_OPTIONS = foreign
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
$(AUX_DIST)
ACLOCAL = aclocal -I $(auxdir)
dist_doc_DATA = LICENSE LICENSE.Sendmail
DISTCLEANFILES = opendmarc-@[email protected]
DISTCHECK_CONFIGURE_FLAGS=--enable-filter-tests
dist-hook:
[ -f $(distdir)/libopendmarc/dmarc.h ] && rm -f $(distdir)/libopendmarc/dmarc.h
sed -e '/OPENDMARC_LIB_VERSION/s/0x[0-9]*/0x@HEX_VERSION@/' < $(srcdir)/libopendmarc/dmarc.h > $(distdir)/libopendmarc/dmarc.h
echo "looking to see if @VERSION@ is in the RELEASE_NOTES"
fgrep @VERSION@ $(srcdir)/RELEASE_NOTES
sed -e 's|\(@VERSION@[ \t]*\)[0-9?]\{4\}\(/[0-9?]\{2\}\)\{2\}|\1'`date +%Y/%m/%d`'|' < $(srcdir)/RELEASE_NOTES > $(distdir)/RELEASE_NOTES
$(DIST_ARCHIVES): distcheck
$(DIST_ARCHIVES).md5: $(DIST_ARCHIVES)
md5 $? > $@ || md5sum $? > $@
$(DIST_ARCHIVES).sha1: $(DIST_ARCHIVES)
sha1 $? > $@ || sha1sum $? > $@
$(DIST_ARCHIVES).asc: $(DIST_ARCHIVES)
gpg -a -u [email protected] --detach-sign $?
push: $(DIST_ARCHIVES) $(DIST_ARCHIVES).sha1 $(DIST_ARCHIVES).md5 $(DIST_ARCHIVES).asc
@echo "Are you sure you want to tag and release $(DIST_ARCHIVES)? (y/n)"
@read confirm && [ $$confirm = 'y' ]
git tag rel-opendmarc-`echo $(VERSION) | sed 's/\./-/g'`
git push --tags
scp $(DIST_ARCHIVES) $(DIST_ARCHIVES).sha1 $(DIST_ARCHIVES).md5 $(DIST_ARCHIVES).asc RELEASE_NOTES cm-msk,[email protected]:/home/frs/project/o/op/opendmarc/
.PHONY: push