1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
prefix=/usr/local
mandir=$(prefix)/share/man
bindir=$(prefix)/bin
sysconfdir=/etc
INSTALL=/usr/bin/install
man: vws.1 find_free_port.1
%.1:%.mkd
pandoc -s -t man -o $@ $+
clean:
rm *.1
install: vws vws.1 find_free_port.1 vws.conf
[ -d $(DESTDIR)$(bindir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(bindir)
[ -d $(DESTDIR)$(mandir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir)
[ -d $(DESTDIR)$(mandir)/man1 ]||$(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir)/man1
$(INSTALL) -c -m 755 -o root find_free_port $(DESTDIR)$(bindir)
$(INSTALL) -c -m 755 -o root vws $(DESTDIR)$(bindir)
[ -f $(DESTDIR)$(sysconfdir)/vws.conf ]|| $(INSTALL) -c -m 644 -o root vws.conf $(DESTDIR)$(sysconfdir)
$(INSTALL) -c -m 644 -o root vws.1 $(DESTDIR)$(mandir)/man1
$(INSTALL) -c -m 644 -o root find_free_port.1 $(DESTDIR)$(mandir)/man1
|
>
|
>
>
|
|
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
|
prefix=/usr/local
mandir=$(prefix)/share/man
bindir=$(prefix)/bin
sysconfdir=/etc
INSTALL=/usr/bin/install
man: vws.1 find_free_port.1
%.1:%.mkd
pandoc -s -t man -o $@ $+
clean:
rm -f *.1 vws.service
vws.service: vws.service.in
sed 's!@bindir@!$(bindir)!' $+ > $@
install: vws vws.1 find_free_port.1 vws.conf vws.service
[ -d $(DESTDIR)$(bindir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(bindir)
[ -d $(DESTDIR)$(mandir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir)
[ -d $(DESTDIR)$(mandir)/man1 ]||$(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir)/man1
$(INSTALL) -c -m 755 -o root find_free_port $(DESTDIR)$(bindir)
$(INSTALL) -c -m 755 -o root vws $(DESTDIR)$(bindir)
[ -f $(DESTDIR)$(sysconfdir)/vws.conf ]|| $(INSTALL) -c -m 644 -o root vws.conf $(DESTDIR)$(sysconfdir)
$(INSTALL) -c -m 644 -o root vws.1 $(DESTDIR)$(mandir)/man1
$(INSTALL) -c -m 644 -o root find_free_port.1 $(DESTDIR)$(mandir)/man1
|