fix warning on statserv install

This commit is contained in:
Mark 2004-02-12 22:18:57 +00:00
parent 7d66a48b48
commit 92e2171246
8 changed files with 17 additions and 3 deletions

View file

@ -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

View file

@ -4,3 +4,5 @@ DISTFILES = $(SRCS) cs.h Makefile ChangeLog
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)

View file

@ -4,3 +4,5 @@ DISTFILES = serviceroots.c Makefile
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)

View file

@ -4,3 +4,5 @@ DISTFILES = $(SRCS) hostserv.h Makefile ChangeLog
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)

View file

@ -4,3 +4,5 @@ DISTFILES = $(SRCS) loveserv.h Makefile ChangeLog
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)

View file

@ -4,3 +4,5 @@ DISTFILES = $(SRCS) ms.h Makefile ChangeLog
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)

View file

@ -12,4 +12,3 @@ include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
$(INSTALL_DATA) $(DATA) $(DATADIRECTORY)

View file

@ -3,3 +3,6 @@ TARGET = template.so
DISTFILES = $(SRCS) Makefile
include ../Makefile.inc
install: $(TARGET)
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)