Add uninstall and clean target, install systemd units

This commit is contained in:
DJ Lucas 2017-09-30 02:40:10 -05:00
parent ecdb27dff2
commit ad038d1a46
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,5 @@
0.5 - Add example systemd timer and service units 0.5 - Install systemd timer and service units
- Add uninstall and clean targets
0.4 - Add email and code signing flat file certificate stores 0.4 - Add email and code signing flat file certificate stores
0.3 - Generate single file stores (Java and GNUTLS) using main OpenSSL 0.3 - Generate single file stores (Java and GNUTLS) using main OpenSSL
store as source to avoid duplicates store as source to avoid duplicates

View File

@ -1,15 +1,30 @@
MANDIR=/usr/share/man MANDIR=/usr/share/man
SBINDIR=/usr/sbin SBINDIR=/usr/sbin
INIT=$(shell ps -p 1 --no-header | cut -d " " -f 15)
all: all:
chmod 755 make-ca help2man chmod 755 make-ca help2man
./help2man -s 8 -N ./make-ca -i include.h2m -o make-ca.8 ./help2man -s 8 -N ./make-ca -i include.h2m -o make-ca.8
clean:
rm -f make-ca.8
chmod 0644 help2man
chmod 0644 make-ca
install: all install: all
/usr/bin/install -vdm755 $(DESTDIR)$(SBINDIR) /usr/bin/install -vdm755 $(DESTDIR)$(SBINDIR)
/usr/bin/install -vdm755 $(DESTDIR)$(MANDIR)/man8 /usr/bin/install -vdm755 $(DESTDIR)$(MANDIR)/man8
install -vm755 make-ca $(DESTDIR)$(SBINDIR) install -vm755 make-ca $(DESTDIR)$(SBINDIR)
install -vm644 make-ca.8 $(DESTDIR)$(MANDIR)/man8 install -vm644 make-ca.8 $(DESTDIR)$(MANDIR)/man8
if test "$(INIT)" == "systemd"; then \
install -vdm755 $(DESTDIR)/etc/systemd/system; \
install -vm644 systemd/* $(DESTDIR)/etc/systemd/system; \
fi
uninstall:
rm -f $(DESTDIR)$(SBINDIR)/make-ca
rm -f $(DESTDIR)$(MANDIR)/man8/make-ca.8
.PHONY: all install .PHONY: all install