25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

fix Makefile.win32 for including stun (thanks to neustradamus)

SVN Revision: 2620
This commit is contained in:
Christophe Romain 2009-09-23 21:12:44 +00:00
parent b12b18d59f
commit 479b04a6a3

View File

@ -63,6 +63,9 @@ release : build release_clean
copy stringprep\*.erl $(SRC_DIR)\stringprep copy stringprep\*.erl $(SRC_DIR)\stringprep
copy stringprep\*.c $(SRC_DIR)\stringprep copy stringprep\*.c $(SRC_DIR)\stringprep
copy stringprep\*.tcl $(SRC_DIR)\stringprep copy stringprep\*.tcl $(SRC_DIR)\stringprep
mkdir $(SRC_DIR)\stun
copy stun\*.erl $(SRC_DIR)\stun
copy stun\*.hrl $(SRC_DIR)\stun
mkdir $(SRC_DIR)\tls mkdir $(SRC_DIR)\tls
copy tls\*.erl $(SRC_DIR)\tls copy tls\*.erl $(SRC_DIR)\tls
copy tls\*.c $(SRC_DIR)\tls copy tls\*.c $(SRC_DIR)\tls
@ -96,6 +99,8 @@ all-recursive :
nmake -nologo -f Makefile.win32 nmake -nologo -f Makefile.win32
cd ..\stringprep cd ..\stringprep
nmake -nologo -f Makefile.win32 nmake -nologo -f Makefile.win32
cd ..\stun
nmake -nologo -f Makefile.win32
cd ..\tls cd ..\tls
nmake -nologo -f Makefile.win32 nmake -nologo -f Makefile.win32
cd ..\ejabberd_zlib cd ..\ejabberd_zlib
@ -135,6 +140,8 @@ clean-recursive :
nmake -nologo -f Makefile.win32 clean nmake -nologo -f Makefile.win32 clean
cd ..\stringprep cd ..\stringprep
nmake -nologo -f Makefile.win32 clean nmake -nologo -f Makefile.win32 clean
cd ..\stun
nmake -nologo -f Makefile.win32 clean
cd ..\tls cd ..\tls
nmake -nologo -f Makefile.win32 clean nmake -nologo -f Makefile.win32 clean
cd ..\ejabberd_zlib cd ..\ejabberd_zlib
@ -160,4 +167,3 @@ $(DLL) : $(OBJECT)
$(OBJECT) : $(SOURCE) $(OBJECT) : $(SOURCE)
$(CC) $(CC_FLAGS) -c -Fo$(OBJECT) $(SOURCE) $(CC) $(CC_FLAGS) -c -Fo$(OBJECT) $(SOURCE)