git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index bd29cbb..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-all:
-
-
-install: copy-etc copy-bin
-
-
-copy-etc: mkdir-etc
- @if [ ! -e /etc/aptly-lirionde/aptly.conf ]; then \
- install -vpm0644 -oroot -groot -t /etc/lirion/aptly.conf ./etc/aptly-lirionde.conf; \
- else printf '/etc/lirion/aptly.conf existing, skipping.\n'; \
- fi
-
-mkdir-etc:
- @install -dvm0755 -oroot -groot /etc/lirion
-
-
-copy-bin:
- @install -vpm0755 -oroot -groot -t /usr/bin bin/aptly-lirionde
-
-
-.PHONY: mkdir-etc copy-etc copy-bin