distribution update
This commit is contained in:
parent
4fb5ec5e3b
commit
cccff4a1b4
4 changed files with 8 additions and 7 deletions
|
@ -11,9 +11,8 @@ INCLUDES=-I@DIRINST@/include/ -I. -Ilibopm
|
||||||
SOURCES= opsb.c proxy.c opsb_help.c
|
SOURCES= opsb.c proxy.c opsb_help.c
|
||||||
OBJECTS= opsb.o proxy.o opsb_help.o
|
OBJECTS= opsb.o proxy.o opsb_help.o
|
||||||
TARGET= opsb.so
|
TARGET= opsb.so
|
||||||
DOCS=README.opsb
|
DOCS=README.opsb opsb.Settings
|
||||||
DATA=
|
DISTFILES = $(SOURCES) $(DOCS) modconfig.h.in configure install-sh ChangeLog Makefile.in opsb.h libopm/*.c libopm/*.h libopm/README libopm/LICENSE LICENSE libopm/*.in
|
||||||
DISTFILES = $(SOURCES) $(DOCS) modconfig.h.in configure install-sh ChangeLog Makefile.in opsb.h
|
|
||||||
distdir = @PACKAGE@-@VERSION@
|
distdir = @PACKAGE@-@VERSION@
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,10 +35,13 @@ clean:
|
||||||
install: module
|
install: module
|
||||||
$(INSTALL) -m 644 $(TARGET) $(DIRECTORY)
|
$(INSTALL) -m 644 $(TARGET) $(DIRECTORY)
|
||||||
$(INSTALL) -m 644 $(DOCS) $(DIRECTORY)../doc/
|
$(INSTALL) -m 644 $(DOCS) $(DIRECTORY)../doc/
|
||||||
|
@cd $(DIRECTORY)..; \
|
||||||
|
if ! test -f $(DIRECTORY)../kpconf/OPSB ; then ./kptool -i doc/opsb.Settings; fi
|
||||||
dist:
|
dist:
|
||||||
@echo -n "Creating Directories"
|
@echo -n "Creating Directories"
|
||||||
@-rm -rf $(distdir)
|
@-rm -rf $(distdir)
|
||||||
@mkdir $(distdir)
|
@mkdir $(distdir)
|
||||||
|
@mkdir $(distdir)/libopm
|
||||||
@echo "Done"
|
@echo "Done"
|
||||||
@echo -n "Coping Core Distribution Files"
|
@echo -n "Coping Core Distribution Files"
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
|
@ -48,7 +50,6 @@ dist:
|
||||||
done
|
done
|
||||||
@echo "Done"
|
@echo "Done"
|
||||||
@tar -czf $(distdir).tar.gz $(distdir)/*
|
@tar -czf $(distdir).tar.gz $(distdir)/*
|
||||||
@rm -rf $(distdir)
|
|
||||||
@echo "Tar file $(distdir).tar.gz created, Freshmeat Time"
|
@echo "Tar file $(distdir).tar.gz created, Freshmeat Time"
|
||||||
|
|
||||||
$(OBJECTS): Makefile
|
$(OBJECTS): Makefile
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -1265,7 +1265,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
ac_config_headers="$ac_config_headers modconfig.h"
|
ac_config_headers="$ac_config_headers modconfig.h"
|
||||||
|
|
||||||
PACKAGE=OPSB
|
PACKAGE=OPSB
|
||||||
VERSION=1.0
|
VERSION=2.0Beta1
|
||||||
DIRINST=~/NeoStats/
|
DIRINST=~/NeoStats/
|
||||||
|
|
||||||
CFLAGS="$CFLAGS -O2 -Wall"
|
CFLAGS="$CFLAGS -O2 -Wall"
|
||||||
|
|
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_INIT(opsb.c)
|
AC_INIT(opsb.c)
|
||||||
AC_CONFIG_HEADER(modconfig.h)
|
AC_CONFIG_HEADER(modconfig.h)
|
||||||
PACKAGE=OPSB
|
PACKAGE=OPSB
|
||||||
VERSION=1.0
|
VERSION=2.0Beta1
|
||||||
DIRINST=~/NeoStats/
|
DIRINST=~/NeoStats/
|
||||||
AC_PREFIX_DEFAULT(~/NeoStats/)
|
AC_PREFIX_DEFAULT(~/NeoStats/)
|
||||||
CFLAGS="$CFLAGS -O2 -Wall"
|
CFLAGS="$CFLAGS -O2 -Wall"
|
||||||
|
|
2
opsb.c
2
opsb.c
|
@ -64,7 +64,7 @@ int online;
|
||||||
ModuleInfo __module_info = {
|
ModuleInfo __module_info = {
|
||||||
"OPSB",
|
"OPSB",
|
||||||
"An Open Proxy Scanning Bot",
|
"An Open Proxy Scanning Bot",
|
||||||
"2.0",
|
"2.0Beta1",
|
||||||
__DATE__,
|
__DATE__,
|
||||||
__TIME__
|
__TIME__
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue