-
Notifications
You must be signed in to change notification settings - Fork 98
/
Makefile
117 lines (99 loc) · 4.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
include LIBVER.in
include Makefile.in
LDLIBS += -lhidapi-$(HIDAPI)
LDCONFIG ?= /sbin/ldconfig
__BINDIR ?= $(PREFIX)/bin
INCLUDEDIR ?= ${PREFIX}/include
PKGCONFDIR ?= ${LIBDIR}/pkgconfig
all: usbrelay libusbrelay.so libusbrelay.pc
libusbrelay.so: libusbrelay.c libusbrelay.h
$(CC) -shared -fPIC -Wl,-soname,$@.$(USBMAJOR) $(CPPFLAGS) $(CFLAGS) $< $(LDFLAGS) -o $@.$(USBLIBVER) $(LDLIBS)
$(LDCONFIG) -n .
ln -sr libusbrelay.so.$(USBLIBVER) libusbrelay.so
usbrelay: usbrelay.c libusbrelay.h libusbrelay.so
$(CC) $(CPPFLAGS) $(CFLAGS) $< -l:libusbrelay.so.$(USBLIBVER) -L./ $(LDFLAGS) -o $@ $(LDLIBS)
python:
$(MAKE) -C usbrelay_py
# Commands to generate version number in various situations
# - Release tarballs have version.mk
REL_VERSION = $(if $(wildcard version.mk),$(shell cat version.mk))
# - Use version reported by git
GIT_VERSION = $(if $(wildcard .git/HEAD .git/index),$(shell git describe --tags --match '[0-9].[0-9]*' --abbrev=10 --dirty))
# - Fall back to version derived from directory name
DIR_VERSION = $(shell echo $(notdir $(CURDIR)) | sed -nEe 's/usbrelay-([0-9].*)/\1/p')
# Use first version, which is not empty
VERSION=$(or $(REL_VERSION),$(GIT_VERSION),$(DIR_VERSION),unknown)
# If .git/HEAD and/or .git/index exist, we generate git version with
# the command above and regenerate it whenever any of these files
# changes. If these files don't exist, we use ??? as the version.
gitversion.h: $(wildcard .git/HEAD .git/index)
echo "#define GITVERSION \"$(VERSION)\"" > $@
usbrelay.c libusbrelay.c: gitversion.h
libusbrelay.pc:
echo "prefix=${PREFIX}" > libusbrelay.pc
echo "libdir=${LIBDIR}" >> libusbrelay.pc
echo "includedir=${INCLUDEDIR}" >> libusbrelay.pc
echo "" >> libusbrelay.pc
echo "Name: libusbrelay" >> libusbrelay.pc
echo "Description: A library to manipulate hidraw USB relay" >> libusbrelay.pc
echo "Version: ${USBLIBVER}" >> libusbrelay.pc
echo "Requires:" >> libusbrelay.pc
echo "Conflicts:" >> libusbrelay.pc
echo "Libs: -L${LIBDIR} -lusbrelay" >> libusbrelay.pc
echo "Cflags: -I${INCLUDEDIR}" >> libusbrelay.pc
clean:
rm -f usbrelay
rm -f libusbrelay.so.$(USBLIBVER)
rm -f libusbrelay.so*
rm -f gitversion.h
rm -f libusbrelay.pc
$(MAKE) -C usbrelay_py clean
install: usbrelay libusbrelay.so libusbrelay.pc
install -d $(DESTDIR)$(LIBDIR)
install -m 0755 libusbrelay.so.$(USBLIBVER) $(DESTDIR)$(LIBDIR)
$(LDCONFIG) -n $(DESTDIR)$(LIBDIR)
( cd $(DESTDIR)$(LIBDIR); rm -f libusbrelay.so ;ln -sr libusbrelay.so.$(USBLIBVER) libusbrelay.so )
install -d $(DESTDIR)$(__BINDIR)
install -m 0755 usbrelay $(DESTDIR)$(__BINDIR)
install -d $(DESTDIR)$(INCLUDEDIR)
install -m 0644 libusbrelay.h ${DESTDIR}${INCLUDEDIR}
install -d $(DESTDIR)$(PKGCONFDIR)
install -m 0644 libusbrelay.pc ${DESTDIR}${PKGCONFDIR}
remove:
\rm $(DESTDIR)$(LIBDIR)/libusbrelay.so*
\rm $(DESTDIR)$(PREFIX)/bin/usbrelay
\rm $(DESTDIR)$(INCLUDEDIR)/libusbrelay.h
\rm $(DESTDIR)$(PKGCONFDIR)/libusbrelay.pc
install_py:
$(MAKE) -C usbrelay_py install
# Release target for maintainers
#
# The goal is to generate a commit which contains version.mk with the
# version number, but not have this file in subsequent commits.
release:
@if [ -z "$(VER)" ]; then echo "Please specify version to release, e.g., 'make release VER=1.2.3'."; exit 1; fi
@if [ -n "$$(git tag -l '$(VER)')" ]; then echo ''Tag $(VER) already exists.''; exit 1; fi
git diff --stat --exit-code HEAD # Check that there are no uncommitted changes
echo $(VER) > version.mk
git add version.mk
git commit -m "Release $(VER)"
git tag -m "Release $(VER)" --sign $(VER)
git reset --keep HEAD^
git merge --strategy ours -m 'Remove version.mk after release' $(VER)
@echo
@echo "Now run 'git push --follow-tags' and create the release on GitHub."
@echo "Then, you can sign the release archives by 'make sign-release VER=$(VER)'"
# Sign the release tarball after its creation on GitHub. This is based
# on https://wiki.debian.org/Creating%20signed%20GitHub%20releases. In
# addition to that, we use the 'gh' tool to automate downloading of
# the tarball and uploading of the signature.
sign-release:
@if [ -z "$(VER)" ]; then echo "Please specify the release to sign, e.g., 'make sign-release VER=1.2.3'."; exit 1; fi
git archive --prefix='usbrelay-$(VER)/' -o 'usbrelay-$(VER).tar.gz' '$(VER)'
gpg --armor --detach-sign 'usbrelay-$(VER).tar.gz'
# Verify that github has the same tarball
rm -f 'usbrelay-$(VER).tar.gz'
gh release download '$(VER)' --archive=tar.gz
gpg --verify 'usbrelay-$(VER).tar.gz.asc'
gh release upload '$(VER)' 'usbrelay-$(VER).tar.gz.asc'
.PHONY: all clean install release sign-release