blob: 87e03b931b1d50650fa9a06e139d102c715154b9 (
about) (
plain) (
blame)
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
|
# dyndhcpd - Dynamically start DHCP Daemon
CC := gcc
MD := markdown
INSTALL := install
RM := rm
CP := cp
CFLAGS += -O2 -Wall -Werror
VERSION := $(shell git describe --tags --long 2>/dev/null)
# this is just a fallback in case you do not use git but downloaded
# a release tarball...
ifeq ($(VERSION),)
VERSION := 0.0.1
endif
all: dyndhcpd README.html
config.h:
$(CP) config.def.h config.h
dyndhcpd: dyndhcpd.c config.h
$(CC) $(CFLAGS) -o dyndhcpd dyndhcpd.c \
-DVERSION="\"$(VERSION)\""
README.html: README.md
$(MD) README.md > README.html
install: install-bin install-doc
install-bin: dyndhcpd
$(INSTALL) -D -m0755 dyndhcpd $(DESTDIR)/usr/bin/dyndhcpd
$(INSTALL) -D -m0644 dyndhcpd@.service $(DESTDIR)/usr/lib/systemd/system/dyndhcpd@.service
$(INSTALL) -D -m0644 dhcpd.conf $(DESTDIR)/etc/dyndhcpd/dhcpd.conf
install-doc: README.html
$(INSTALL) -D -m0644 README.md $(DESTDIR)/usr/share/doc/dyndhcpd/README.md
$(INSTALL) -D -m0644 README.html $(DESTDIR)/usr/share/doc/dyndhcpd/README.html
clean:
$(RM) -f *.o *~ dyndhcpd README.html
|