rename genssl.sh to genssl
This commit is contained in:
parent
ef861b0567
commit
14048b96b0
4 changed files with 7 additions and 7 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -34,7 +34,7 @@ src/y.tab.c
|
||||||
ssld/ssld
|
ssld/ssld
|
||||||
tools/convertilines
|
tools/convertilines
|
||||||
tools/convertklines
|
tools/convertklines
|
||||||
tools/genssl.sh
|
tools/genssl
|
||||||
tools/mkpasswd
|
tools/mkpasswd
|
||||||
tools/viconf
|
tools/viconf
|
||||||
include/serno.h
|
include/serno.h
|
||||||
|
|
|
@ -1240,11 +1240,11 @@ AC_CONFIG_FILES( \
|
||||||
src/Makefile \
|
src/Makefile \
|
||||||
modules/Makefile \
|
modules/Makefile \
|
||||||
tools/Makefile \
|
tools/Makefile \
|
||||||
tools/genssl.sh \
|
tools/genssl \
|
||||||
doc/Makefile \
|
doc/Makefile \
|
||||||
help/Makefile \
|
help/Makefile \
|
||||||
)
|
)
|
||||||
AC_CONFIG_COMMANDS([tools/genssl.sh_chmod], [chmod 755 tools/genssl.sh])
|
AC_CONFIG_COMMANDS([tools/genssl_chmod], [chmod 755 tools/genssl])
|
||||||
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ libexecdir = @libexecdir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
|
|
||||||
PROGS = viconf mkpasswd convertilines convertklines genssl.sh
|
PROGS = viconf mkpasswd convertilines convertklines genssl
|
||||||
|
|
||||||
all: $(PROGS)
|
all: $(PROGS)
|
||||||
|
|
||||||
|
@ -47,14 +47,14 @@ convertilines: convertilines.c
|
||||||
convertklines: convertklines.c
|
convertklines: convertklines.c
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDES) convertklines.c -o convertklines $(IRCDLIBS)
|
$(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDES) convertklines.c -o convertklines $(IRCDLIBS)
|
||||||
|
|
||||||
genssl.sh: genssl.sh.in
|
genssl: genssl.in
|
||||||
cd .. && ./config.status tools/genssl.sh && ./config.status tools/genssl.sh_chmod
|
cd .. && ./config.status tools/genssl && ./config.status tools/genssl_chmod
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) -f encspeed viconf chkconf mkpasswd *~ core *.exe convertklines convertilines
|
$(RM) -f encspeed viconf chkconf mkpasswd *~ core *.exe convertklines convertilines
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(RM) -f genssl.sh Makefile
|
$(RM) -f genssl Makefile
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
lint -aacgprxhH $(CPPFLAGS) -DIRCD_PREFIX=\"@prefix@\" $(convertklines_SOURCES) $(mkpasswd_SOURCES) $(viconf_SOURCES) $(encspeed_SOURCES) >>../lint.out
|
lint -aacgprxhH $(CPPFLAGS) -DIRCD_PREFIX=\"@prefix@\" $(convertklines_SOURCES) $(mkpasswd_SOURCES) $(viconf_SOURCES) $(encspeed_SOURCES) >>../lint.out
|
||||||
|
|
Loading…
Reference in a new issue