fix warning on statserv install
This commit is contained in:
parent
7d66a48b48
commit
92e2171246
8 changed files with 17 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -4,3 +4,5 @@ DISTFILES = $(SRCS) cs.h Makefile ChangeLog
|
|||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
|
@ -4,3 +4,5 @@ DISTFILES = serviceroots.c Makefile
|
|||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
|
@ -4,3 +4,5 @@ DISTFILES = $(SRCS) hostserv.h Makefile ChangeLog
|
|||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
|
@ -4,3 +4,5 @@ DISTFILES = $(SRCS) loveserv.h Makefile ChangeLog
|
|||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
|
@ -4,3 +4,5 @@ DISTFILES = $(SRCS) ms.h Makefile ChangeLog
|
|||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
|
@ -12,4 +12,3 @@ include ../Makefile.inc
|
|||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
$(INSTALL_DATA) $(DATA) $(DATADIRECTORY)
|
||||
|
||||
|
|
|
@ -3,3 +3,6 @@ TARGET = template.so
|
|||
DISTFILES = $(SRCS) Makefile
|
||||
|
||||
include ../Makefile.inc
|
||||
|
||||
install: $(TARGET)
|
||||
$(INSTALL_MOD) $(TARGET) $(MODDIRECTORY)
|
||||
|
|
Reference in a new issue