mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
a5c46d31e4
Purge a lot of really old and obsolete documents, and merge some together where possible. Lots of efnet docs and the old ircd-ratbox manpage (lol) was purged. Reorganise everything nice and neatly as possible. Things describing features can be found in features/, and some more technical documents were moved to techinical/. Old credits file was consolidated into credits-past.txt, and a reference was added to it in the credits.
36 lines
962 B
Makefile
36 lines
962 B
Makefile
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
exec_suffix = @exec_suffix@
|
|
bindir = @bindir@
|
|
libexecdir = @libexecdir@
|
|
sysconfdir = @sysconfdir@
|
|
localstatedir = @localstatedir@
|
|
|
|
# Local to the etc Makefile
|
|
|
|
CONFS = ircd.conf.example reference.conf
|
|
|
|
install-mkdirs:
|
|
-@if test ! -d $(DESTDIR)$(sysconfdir); then \
|
|
echo "mkdir -p $(sysconfdir)"; \
|
|
mkdir -p $(DESTDIR)$(sysconfdir); \
|
|
fi
|
|
|
|
install: install-mkdirs
|
|
@echo "ircd: installing example config files ($(CONFS))"
|
|
@for i in $(CONFS); do \
|
|
if test -f $(DESTDIR)$(sysconfdir)/$$i; then \
|
|
$(MV) $(DESTDIR)$(sysconfdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.old; \
|
|
fi; \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \
|
|
done
|
|
|
|
-@if test ! -f $(DESTDIR)$(sysconfdir)/ircd.motd; then \
|
|
echo "ircd: installing motd file (ircd.motd)"; \
|
|
$(INSTALL_DATA) ircd.motd $(DESTDIR)$(sysconfdir); \
|
|
fi
|
|
|
|
-@if test -f $(DESTDIR)$(sysconfdir)/links.txt; then \
|
|
$(RM) $(DESTDIR)$(sysconfdir)/links.txt; \
|
|
fi
|
|
|