🔒 Repository is read-only – file editing is disabled.
123456789101112131415161718192021222324252627282930313233343536373839404142
include Makefile.inc
DIRSCRIPTS = scripts
DIRSERVICES = services
.PHONY: all
all:
$(MAKE) -C $(DIRSRC)
install: all
$(MAKE) -C $(DIRSCRIPTS) install
$(MAKE) -C $(DIRMAN) install
clean:
$(MAKE) -C $(DIRSRC) clean
install-sysd-%:
$(MAKE) -C $(DIRSERVICES)/sysd $@
install-sysv-%:
$(MAKE) -C $(DIRSERVICES)/sysv $@
uninstall-sysd-%:
$(MAKE) -C $(DIRSERVICES)/sysd $@
uninstall-sysv-%:
$(MAKE) -C $(DIRSERVICES)/sysv $@
dist: distclean
git archive --format=tar --prefix=$(NAME)/ HEAD | tar -x
git log > $(NAME)/ChangeLog
tar cJvf $(NAME).tar.xz $(NAME)
rm -rf $(NAME)
distclean:
rm -rf $(NAME).tar.xz