forked from rhboot/pesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (46 loc) · 1.73 KB
/
Makefile
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
56
57
58
SRCDIR = $(realpath .)
TOPDIR = $(realpath .)
include $(TOPDIR)/Make.version
include $(TOPDIR)/Make.rules
include $(TOPDIR)/Make.defaults
include $(TOPDIR)/Make.coverity
include $(TOPDIR)/Make.scan-build
SUBDIRS := include libdpe src
install :
$(INSTALL) -d -m 755 $(INSTALLROOT)$(docdir)/pesign-$(VERSION)/
$(INSTALL) -pm 644 COPYING $(INSTALLROOT)$(docdir)/pesign-$(VERSION)/
@set -e ; for x in $(SUBDIRS) ; do \
$(MAKE) -C $$x $@ ; \
done
install_systemd install_sysvinit : install
@set -e ; for x in $(SUBDIRS) ; do \
$(MAKE) -C $$x $@ ; \
done
distclean : | clean
clean deps all : | Make.version
@set -e ; for x in $(SUBDIRS) ; do \
$(MAKE) -C $$x $@ ; \
done
$(SUBDIRS) :
$(MAKE) -C $@ all
.PHONY: $(SUBDIRS)
GITTAG = $(VERSION)
test-archive:
@rm -rf /tmp/pesign-$(VERSION) /tmp/pesign-$(VERSION)-tmp
@mkdir -p /tmp/pesign-$(VERSION)-tmp
@git archive --format=tar $(shell git branch | awk '/^*/ { print $$2 }') | ( cd /tmp/pesign-$(VERSION)-tmp/ ; tar x )
@git diff | ( cd /tmp/pesign-$(VERSION)-tmp/ ; patch -s -p1 -b -z .gitdiff )
@mv /tmp/pesign-$(VERSION)-tmp/ /tmp/pesign-$(VERSION)/
@dir=$$PWD; cd /tmp; tar -c --bzip2 -f $$dir/pesign-$(VERSION).tar.bz2 pesign-$(VERSION)
@rm -rf /tmp/pesign-$(VERSION)
@echo "The archive is in pesign-$(VERSION).tar.bz2"
tag:
git tag -s $(GITTAG) refs/heads/master
archive: tag
@rm -rf /tmp/pesign-$(VERSION) /tmp/pesign-$(VERSION)-tmp
@mkdir -p /tmp/pesign-$(VERSION)-tmp
@git archive --format=tar $(GITTAG) | ( cd /tmp/pesign-$(VERSION)-tmp/ ; tar x )
@mv /tmp/pesign-$(VERSION)-tmp/ /tmp/pesign-$(VERSION)/
@dir=$$PWD; cd /tmp; tar -c --bzip2 -f $$dir/pesign-$(VERSION).tar.bz2 pesign-$(VERSION)
@rm -rf /tmp/pesign-$(VERSION)
@echo "The archive is in pesign-$(VERSION).tar.bz2"