X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/a32da4c70ca85b879f8162469ae37ffeca500b99..d3c487113bc305d92f94884675625374c44d5a78:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 3c58dd1..76594a6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,20 +1,26 @@ -EXTRA_DIST = FAQ srvx.conf.example sockcheck.conf.example +EXTRA_DIST = FAQ x3.conf.example sockcheck.conf.example autogen.sh SUBDIRS = @MY_SUBDIRS@ +PY_CFLAGS = @PY_CFLAGS@ +PY_LIBS = @PY_LIBS@ +pythonpath = @pythonpath@ + DIST_SUBDIRS = src rx -all: srvx +all: x3 -srvx: src/srvx - cp ./src/srvx $(srcdir)/src/*.help . +x3: src/x3 + cp ./src/x3 $(srcdir)/src/*.help . install-exec-local: $(INSTALL) -d -m 755 $(prefix) - $(INSTALL) -m 744 ./src/srvx $(prefix) + $(INSTALL) -m 744 ./src/x3 $(prefix) $(INSTALL) -m 644 $(srcdir)/src/*.help $(prefix) - $(INSTALL) -m 600 $(srcdir)/srvx.conf.example $(prefix) + $(INSTALL) -m 600 $(srcdir)/x3.conf.example $(prefix) $(INSTALL) -m 644 $(srcdir)/sockcheck.conf.example $(prefix) + $(INSTALL) -m 644 $(srcdir)/src/modpython.py $(prefix) + ./install-r.sh $(srcdir)/src/plugins $(prefix) @echo - @echo srvx-$(VERSION) has been installed to $(prefix) - @echo Remember to edit srvx.conf.example and sockcheck.conf.example - @echo And of course, ./srvx --help before starting. + @echo X3-$(VERSION) has been installed to $(prefix) + @echo Remember to edit x3.conf.example and sockcheck.conf.example + @echo And of course, ./x3 --help before starting. @echo