diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d26ccb9 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +DESTDIR= +PREFIX=/usr/local +LIBDIR=$(PREFIX)/lib +SYSDDIR=$(LIBDIR)/systemd/system + + +all: + @echo no-op + + +install: + install -m644 -Dt $(DESTDIR)$(SYSDDIR) dns-ready{-check.service,.target} + + +uninstall: + rm -f $(DESTDIR)$(SYSDDIR)/dns-ready{-check.service,.target} + + +.PHONY: all install uninstall |