aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-10-25 23:48:38 +0200
committerGravatar Christian Hesse <mail@eworm.de>2013-10-25 23:48:38 +0200
commitcfe74022706ded43da15264606cc58e62caa8452 (patch)
tree06dc1635e1942f2dd104927e7eaa916f74323e2f /Makefile
parent2add64f0904e151ca9e160cd8a880945bfd0c940 (diff)
downloadpaccache-cfe74022706ded43da15264606cc58e62caa8452.tar.gz
paccache-cfe74022706ded43da15264606cc58e62caa8452.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..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