$(E) " DLLWRAP" $@
$(Q) $(DLLWRAP) --def $(dlldef) -o $@ $(dllobjs)
+zip = pgbouncer-$(PACKAGE_VERSION)-win32.zip
+
+zip: all
+ make -C doc html
+ifeq ($(enable_debug),no)
+ $(STRIP) pgbevent.dll
+ $(STRIP) pgbouncer.exe
+endif
+ cp COPYRIGHT doc/COPYRIGHT.txt
+ cp AUTHORS doc/AUTHORS.txt
+ rm -f $(zip)
+ zip $(zip) pgbouncer.exe pgbevent.dll doc/AUTHORS.txt doc/COPYRIGHT.txt doc/*.html
+
endif
stripped: $(exe) $(dll)
------------------
At the moment only build env tested is MINGW32 / MSYS. Cygwin
-and Visual $ANYTHING are untested. In addition to libevent you
-need GNU regex library (http://gnuwin32.sourceforge.net/packages/regex.htm[]).
+and Visual $ANYTHING are untested.
+
Then do the usual:
$ ./configure ...