Files
makeuser/Makefile

16 lines
334 B
Makefile
Raw Normal View History

2019-07-03 15:55:14 -04:00
BINDIR ?= /usr/local/bin
2019-06-28 11:18:20 -04:00
install:
2019-07-03 15:55:14 -04:00
@echo installing the executable to $(BINDIR)
2019-06-28 11:18:20 -04:00
@mkdir -p $(BINDIR)
@install -m 755 makeuser $(BINDIR)
@install -m 644 welcome-email.tmpl $(BINDIR)
uninstall:
2019-07-03 15:55:14 -04:00
@echo removing the executable from $(BINDIR)
2019-06-28 11:18:20 -04:00
@rm -f $(BINDIR)/makeuser
@rm -f $(BINDIR)/welcome-email.tmpl
.PHONY: install uninstall