summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-10-31 16:19:05 +0100
committerGravatar Christian Hesse <mail@eworm.de>2013-10-31 16:19:05 +0100
commitf0ec293fee4f149e0234d0bfccdd6189145370e8 (patch)
treeb914cfefe849b426305825728f64e71bab176099 /Makefile
parent81f33f4d6f59ca1d27d767ed3619ed0e2e73e0d7 (diff)
downloaddyndhcpd-f0ec293fee4f149e0234d0bfccdd6189145370e8.tar.gz
dyndhcpd-f0ec293fee4f149e0234d0bfccdd6189145370e8.tar.zst
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9ad0a87
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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: netlink-notify
+ $(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/netlink-notify/README.md
+ $(INSTALL) -D -m0644 README.html $(DESTDIR)/usr/share/doc/netlink-notify/README.html
+
+clean:
+ $(RM) -f *.o *~ dyndhcpd README.html