Initial import of the ircii-pana-1.1-final source tree.
git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
65
dll/Make-windll.sh
Normal file
65
dll/Make-windll.sh
Normal file
@@ -0,0 +1,65 @@
|
||||
#!/bin/sh
|
||||
# Make .def file:
|
||||
|
||||
export LIBPATH=/usr/local/cygwin-new/i586-pc-cygwin/lib
|
||||
export LD=/usr/local/cygwin-new/bin/i586-pc-cygwin-ld
|
||||
export NM=/usr/local/cygwin-new/bin/i586-pc-cygwin-nm
|
||||
export DLLTOOL=/usr/local/cygwin-new/bin/i586-pc-cygwin-dlltool
|
||||
export AS=/usr/local/cygwin-new/bin/i586-pc-cygwin-as
|
||||
export GCC=/usr/local/cygwin-new/bin/i586-pc-cygwin-gcc
|
||||
RM=rm
|
||||
CP=cp
|
||||
|
||||
$GCC -c init.cc
|
||||
$GCC -c fixup.cc
|
||||
$GCC -I../include -c pkga.c
|
||||
$GCC -I../include -c scan.c
|
||||
|
||||
echo EXPORTS > pkga.def
|
||||
$NM pkga.o init.o fixup.o | grep '^........ [T] _' | sed 's/[^_]*_//' >> pkga.def
|
||||
|
||||
# Link DLL.
|
||||
$LD --base-file pkga.base --dll -o pkga.dll pkga.o init.o fixup.o\
|
||||
$LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
$DLLTOOL --as=$AS --dllname pkga.dll --def pkga.def --base-file\
|
||||
pkga.base --output-exp pkga.exp
|
||||
$LD --base-file pkga.base pkga.exp --dll -o pkga.dll pkga.o\
|
||||
init.o fixup.o $LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
$DLLTOOL --as=$AS --dllname pkga.dll --def pkga.def --base-file\
|
||||
pkga.base --output-exp pkga.exp
|
||||
$LD pkga.exp --dll -o pkga.dll pkga.o init.o fixup.o\
|
||||
$LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
|
||||
# Build the pkgaB.a lib to link to:
|
||||
$DLLTOOL --as=$AS --dllname pkga.dll --def pkga.def --output-lib pkga.a
|
||||
|
||||
echo EXPORTS > scan.def
|
||||
$NM scan.o init.o fixup.o | grep '^........ [T] _' | sed 's/[^_]*_//' >> scan.def
|
||||
|
||||
# Link DLL.
|
||||
$LD --base-file scan.base --dll -o scan.dll scan.o init.o fixup.o\
|
||||
$LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
$DLLTOOL --as=$AS --dllname scan.dll --def scan.def --base-file\
|
||||
scan.base --output-exp scan.exp
|
||||
$LD --base-file scan.base scan.exp --dll -o scan.dll scan.o\
|
||||
init.o fixup.o $LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
$DLLTOOL --as=$AS --dllname scan.dll --def scan.def --base-file\
|
||||
scan.base --output-exp scan.exp
|
||||
$LD scan.exp --dll -o scan.dll scan.o init.o fixup.o\
|
||||
$LIBPATH/libcygwin.a $LIBPATH/libkernel32.a -e _dll_entry@12
|
||||
|
||||
# Build the scanB.a lib to link to:
|
||||
$DLLTOOL --as=$AS --dllname scan.dll --def scan.def --output-lib scan.a
|
||||
|
||||
$RM *.base *.def *.exp
|
||||
(cd abot; sh ./abot.sh)
|
||||
(cd acro; sh ./acro.sh)
|
||||
(cd blowfish; sh ./blowfish.sh)
|
||||
(cd possum; sh ./possum.sh)
|
||||
(cd hint; sh ./hint.sh)
|
||||
(cd cavlink; sh ./cavlink.sh)
|
||||
(cd identd; sh ./identd.sh)
|
||||
(cd encrypt; sh ./encrypt.sh)
|
||||
(cd fserv; sh ./fserv.sh)
|
||||
(cd nap; sh ./nap.sh)
|
||||
|
||||
Reference in New Issue
Block a user