From cfe74022706ded43da15264606cc58e62caa8452 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 25 Oct 2013 23:48:38 +0200 Subject: initial commit --- Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8ee2e14 --- /dev/null +++ b/Makefile @@ -0,0 +1,40 @@ +# pacserve - serve pacman cache and redirect via avahi service + +CC := gcc +MD := markdown +INSTALL := install +RM := rm +CFLAGS += -O2 -Wall -Werror +CFLAGS += $(shell pkg-config --libs --cflags libcurl) +CFLAGS += $(shell pkg-config --libs --cflags avahi-client) +CFLAGS += $(shell pkg-config --libs --cflags libmicrohttpd) +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: pacredir README.html + +pacredir: pacredir.c + $(CC) $(CFLAGS) -o pacredir pacredir.c \ + -DVERSION="\"$(VERSION)\"" + +README.html: README.md + $(MD) README.md > README.html + +install: install-bin install-doc + +install-bin: pacredir + $(INSTALL) -D -m0755 pacredir $(DESTDIR)/usr/bin/pacredir + $(INSTALL) -D -m0755 avahi/pacserve.service $(DESTDIR)/etc/avahi/services/pacserve.service + $(INSTALL) -D -m0755 systemd/pacserve.service $(DESTDIR)/usr/lib/systemd/system/pacserve.service + $(INSTALL) -D -m0755 systemd/pacredir.service $(DESTDIR)/usr/lib/systemd/system/pacredir.service + +install-doc: README.html + $(INSTALL) -D -m0644 README.md $(DESTDIR)/usr/share/doc/pacserve/README.md + $(INSTALL) -D -m0644 README.html $(DESTDIR)/usr/share/doc/pacserve/README.html + +clean: + $(RM) -f *.o *~ README.html pacredir -- cgit v1.2.3-54-g00ecf