]> granicus.if.org Git - ejabberd/commitdiff
fix Makefile.win32 for including stun (thanks to neustradamus)
authorChristophe Romain <christophe.romain@process-one.net>
Wed, 23 Sep 2009 21:11:21 +0000 (21:11 +0000)
committerChristophe Romain <christophe.romain@process-one.net>
Wed, 23 Sep 2009 21:11:21 +0000 (21:11 +0000)
SVN Revision: 2619

src/Makefile.win32

index 9d21e896ae43bb1f36df63d611dee4fcf0237f31..1fe4c6ecf2643ae6851f7da0c5d7f684037faeae 100644 (file)
@@ -66,6 +66,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
@@ -101,6 +104,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
@@ -142,6 +147,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
@@ -166,5 +173,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)