From 361d396d01f6cdeb49970c0eeb705da442879f05 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Fri, 6 Mar 2020 18:59:57 -0500 Subject: Initial commit --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad366da --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +prefix = /usr/local +libdir = $(prefix)/lib +systemdsystemunitdir = $(libdir)/systemd/system + +INSTALL = install +RM = rm -f +RMDIR = rmdir +SED = sed + +all: + +install: + $(INSTALL) -m 0755 -d $(DESTDIR)$(libdir)/cgit + $(INSTALL) -m 0755 syntax-highlighting-server.py $(DESTDIR)$(libdir)/cgit/syntax-highlighting-server.py + $(INSTALL) -m 0755 -d $(DESTDIR)$(libdir)/cgit/filters + $(INSTALL) -m 0755 syntax-highlighting-client.sh $(DESTDIR)$(libdir)/cgit/filters/syntax-highlighting-client.sh + $(INSTALL) -m 0755 -d $(DESTDIR)$(systemdsystemunitdir) + $(SED) -e 's:@libdir@:$(libdir):' syntax-highlighting.service.in > $(DESTDIR)$(systemdsystemunitdir)/syntax-highlighting.service + +uninstall: + $(RM) $(DESTDIR)$(libdir)/cgit/syntax-highlighting-server.py + $(RM) $(DESTDIR)$(libdir)/cgit/filters/syntax-highlighting-client.sh + $(RM) $(DESTDIR)$(systemdsystemunitdir)/syntax-highlighting.service -- cgit v1.2.3-54-g00ecf