diff --git a/dl/Makefile.inc b/dl/Makefile.inc index 1d960a49..a9471c10 100755 --- a/dl/Makefile.inc +++ b/dl/Makefile.inc @@ -36,8 +36,10 @@ distclean: # How to install this module # TARGET will be that defined for building in the Module makefile # Module makefile can optionally specify DATA for data files to install -install: $(TARGET) - $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) +# temp disable due to warning in statserv make install +#install: $(TARGET) +# $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) +# $(INSTALL_DATA) $(DATA) $(DATADIRECTORY) # How to create dist of this module # Module makefile must supply DISTFILES with the files to be distributed diff --git a/dl/cs/Makefile b/dl/cs/Makefile index aafea95e..74436822 100644 --- a/dl/cs/Makefile +++ b/dl/cs/Makefile @@ -4,3 +4,5 @@ DISTFILES = $(SRCS) cs.h Makefile ChangeLog include ../Makefile.inc +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) diff --git a/dl/extauth/Makefile b/dl/extauth/Makefile index 55a79219..8bddc145 100644 --- a/dl/extauth/Makefile +++ b/dl/extauth/Makefile @@ -4,3 +4,5 @@ DISTFILES = serviceroots.c Makefile include ../Makefile.inc +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) diff --git a/dl/hostserv/Makefile b/dl/hostserv/Makefile index 4caa13cc..fcb40c15 100644 --- a/dl/hostserv/Makefile +++ b/dl/hostserv/Makefile @@ -4,3 +4,5 @@ DISTFILES = $(SRCS) hostserv.h Makefile ChangeLog include ../Makefile.inc +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) diff --git a/dl/loveserv/Makefile b/dl/loveserv/Makefile index 658f1500..77b149da 100644 --- a/dl/loveserv/Makefile +++ b/dl/loveserv/Makefile @@ -4,3 +4,5 @@ DISTFILES = $(SRCS) loveserv.h Makefile ChangeLog include ../Makefile.inc +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) diff --git a/dl/ms/Makefile b/dl/ms/Makefile index acb8a534..8d784ee5 100644 --- a/dl/ms/Makefile +++ b/dl/ms/Makefile @@ -4,3 +4,5 @@ DISTFILES = $(SRCS) ms.h Makefile ChangeLog include ../Makefile.inc +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) diff --git a/dl/statserv/Makefile b/dl/statserv/Makefile index 4638fd11..4e54c2fe 100644 --- a/dl/statserv/Makefile +++ b/dl/statserv/Makefile @@ -12,4 +12,3 @@ include ../Makefile.inc install: $(TARGET) $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY) $(INSTALL_DATA) $(DATA) $(DATADIRECTORY) - diff --git a/dl/template/Makefile b/dl/template/Makefile index e8a1f566..483e2751 100755 --- a/dl/template/Makefile +++ b/dl/template/Makefile @@ -3,3 +3,6 @@ TARGET = template.so DISTFILES = $(SRCS) Makefile include ../Makefile.inc + +install: $(TARGET) + $(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)