From 479b04a6a3ac1eb5c719cf55fea616dc3c49b701 Mon Sep 17 00:00:00 2001 From: Christophe Romain Date: Wed, 23 Sep 2009 21:12:44 +0000 Subject: [PATCH] fix Makefile.win32 for including stun (thanks to neustradamus) SVN Revision: 2620 --- src/Makefile.win32 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Makefile.win32 b/src/Makefile.win32 index b866f11ff..d10c45ca8 100644 --- a/src/Makefile.win32 +++ b/src/Makefile.win32 @@ -63,6 +63,9 @@ release : build release_clean copy stringprep\*.erl $(SRC_DIR)\stringprep copy stringprep\*.c $(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 copy tls\*.erl $(SRC_DIR)\tls copy tls\*.c $(SRC_DIR)\tls @@ -96,6 +99,8 @@ all-recursive : nmake -nologo -f Makefile.win32 cd ..\stringprep nmake -nologo -f Makefile.win32 + cd ..\stun + nmake -nologo -f Makefile.win32 cd ..\tls nmake -nologo -f Makefile.win32 cd ..\ejabberd_zlib @@ -135,6 +140,8 @@ clean-recursive : nmake -nologo -f Makefile.win32 clean cd ..\stringprep nmake -nologo -f Makefile.win32 clean + cd ..\stun + nmake -nologo -f Makefile.win32 clean cd ..\tls nmake -nologo -f Makefile.win32 clean cd ..\ejabberd_zlib @@ -159,5 +166,4 @@ $(DLL) : $(OBJECT) $(LD) $(LD_FLAGS) -out:$(DLL) $(OBJECT) $(OBJECT) : $(SOURCE) - $(CC) $(CC_FLAGS) -c -Fo$(OBJECT) $(SOURCE) - + $(CC) $(CC_FLAGS) -c -Fo$(OBJECT) $(SOURCE)