diff options
author | Heiko Engel <hengel@cern.ch> | 2014-11-27 14:19:35 +0100 |
---|---|---|
committer | Heiko Engel <hengel@cern.ch> | 2014-11-27 14:26:18 +0100 |
commit | 93cdc9255ca5dc60a189712db237164fc15e5d96 (patch) | |
tree | 0594e78936f78b24ac1d5f1944bb623c51dd49a2 | |
parent | 3f2826210b1128657d474926f52f5f097d706bf2 (diff) | |
download | xombrero-93cdc9255ca5dc60a189712db237164fc15e5d96.tar.gz |
linux GNUmakefile: install user-agent-headers and http-accept-headers files
-rw-r--r-- | linux/GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/GNUmakefile b/linux/GNUmakefile index 0967fd6..5d9caf1 100644 --- a/linux/GNUmakefile +++ b/linux/GNUmakefile @@ -78,6 +78,8 @@ install: all install -m 644 ../tld-rules $(DESTDIR)$(RESDIR) install -m 644 ../style.css $(DESTDIR)$(RESDIR) install -m 644 ../hsts-preload $(DESTDIR)$(RESDIR) + install -m 644 ../user-agent-headers ${DESTDIR}$(RESDIR) + install -m 644 ../http-accept-headers ${DESTDIR}$(RESDIR) install -m 644 ../torenabled.ico $(DESTDIR)$(RESDIR) install -m 644 ../tordisabled.ico $(DESTDIR)$(RESDIR) @@ -98,6 +100,8 @@ uninstall: rm -f $(DESTDIR)$(RESDIR)/tld-rules rm -f $(DESTDIR)$(RESDIR)/style.css rm -f $(DESTDIR)$(RESDIR)/hsts-preload + rm -f ${DESTDIR}$(RESDIR)/user-agent-headers + rm -f ${DESTDIR}$(RESDIR)/http-accept-headers if [ -d $(DESTDIR)$(RESDIR) ]; then rmdir $(DESTDIR)$(RESDIR); fi clean: rm -f xombrero $(OBJS) $(DEPS) |