From: erickson Date: Thu, 21 Jul 2005 22:28:58 +0000 (+0000) Subject: small tweaks and changes to make the install process more useful X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=69fea05b55124935a0f7c5ae5eb7848b961809c8;p=working%2FOpenSRF.git small tweaks and changes to make the install process more useful git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@413 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/Makefile b/src/Makefile index e99048b..1d18904 100644 --- a/src/Makefile +++ b/src/Makefile @@ -84,6 +84,8 @@ install-prep: mkdir -p $(PERLDIR) mkdir -p $(INCLUDEDIR) mkdir -p $(INCLUDEDIR)/$(OPENSRF) + mkdir -p $(ETCDIR) + mkdir -p $(TEMPLATEDIR) transport-install: install-prep utils-install make -C libtransport install diff --git a/src/gateway/Makefile b/src/gateway/Makefile index 6af77eb..1ae63e4 100644 --- a/src/gateway/Makefile +++ b/src/gateway/Makefile @@ -5,6 +5,7 @@ all: libmod_ils_gateway.so install: cp $(TMPDIR)/libmod_ils_gateway.so $(LIBDIR)/libmod_ils_gateway.so + cp gateway.xml.example $(ETCDIR) $(APXS2) -i -a -n ils_gateway $(LIBDIR)/libmod_ils_gateway.so libmod_ils_gateway.so: mod_ils_gateway.c diff --git a/src/router/Makefile b/src/router/Makefile index fa416c3..c1c5e12 100644 --- a/src/router/Makefile +++ b/src/router/Makefile @@ -9,6 +9,7 @@ all: router install: cp router $(BINDIR) + cp router_config.xml.example $(ETCDIR) router: router.c $(LIB_SOURCES) $(CC) $(LD_OPTS) -D_ROUTER $(CC_OPTS) $(LIB_SOURCES) router.c -o $@