diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2009-09-23 21:11:21 +0000 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2009-09-23 21:11:21 +0000 |
commit | 68fd22af873ab393f50f8471286ee8b5782e9bbb (patch) | |
tree | ce5b0ce85394f905eae0b97f60076704c94df290 /src | |
parent | Fix wrong XEP number to XEP-0227. Recompile translation files. (diff) |
fix Makefile.win32 for including stun (thanks to neustradamus)
SVN Revision: 2619
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.win32 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Makefile.win32 b/src/Makefile.win32 index 9d21e896..1fe4c6ec 100644 --- a/src/Makefile.win32 +++ b/src/Makefile.win32 @@ -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) |