mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-04 15:36:57 +01:00
13f650037e
instead of lib_dir (thanks to Sergei Golovan) * src/**/Makefile.in: Updated (thanks to Sergei Golovan) * src/win32/: Win32 installer stuff (thanks to Sergei Golovan) * src/**/Makefile.win32: Updated (thanks to Sergei Golovan) * src/configure.bat: Likewise * src/configure.erl: Likewise * doc/guide.tex: Updated (thanks to Sergei Golovan) SVN Revision: 226
21 lines
303 B
Batchfile
21 lines
303 B
Batchfile
|
|
@if "x%1"=="x--help" goto usage
|
|
|
|
@set arg=dynamic
|
|
@if "x%1"=="x--static" set arg=static
|
|
|
|
@echo Configuring for %arg% build...
|
|
|
|
erlc configure.erl
|
|
erl -s configure -env arg %arg% -noshell
|
|
|
|
@goto end
|
|
|
|
:usage
|
|
@echo Usage: configure.bat
|
|
@echo or configure.bat --static
|
|
@echo or configure.bat --help
|
|
|
|
:end
|
|
|