aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorLars Roland <Lars.Roland@gmx.net>2006-02-07 09:12:43 +0000
committerLars Roland <Lars.Roland@gmx.net>2006-02-07 09:12:43 +0000
commit5f1e470cc2a42387a4b8823f53b826ce8d82b7e5 (patch)
tree59919707a0240a17f3c27533f162ae0ffa6d1fff /plugins/Makefile.nmake
parentbaed8f088844966923d42e056f79dcdfaaa91f36 (diff)
changes to build lua plugin with MSVC6:
- nmake makefile for lua plugin added. - declare variables at the beginning of a function. - proto_reg_handoff_lua was removed, remove remaining calls, too. - missing functions to libethereal.def added. add lua plugin to installer, if available. svn path=/trunk/; revision=17196
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index d3fdeedfe1..c3cb1cc06b 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -18,6 +18,7 @@ all: \
gryphon \
h223 \
irda \
+ lua\
lwres \
mate \
megaco \
@@ -88,6 +89,13 @@ irda::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
+lua::
+!IFDEF LUA_DIR
+ cd lua
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+!ENDIF
+
lwres::
cd lwres
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
@@ -176,6 +184,8 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../irda
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../lua
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../lwres
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../mate
@@ -227,6 +237,8 @@ distclean: clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../irda
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../lua
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../lwres
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../mate
@@ -278,6 +290,8 @@ maintainer-clean: distclean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../irda
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
+ cd ../lua
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../lwres
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../mate
@@ -324,6 +338,9 @@ install-plugins:
xcopy gryphon\*.dll $(VERSION) /d
xcopy h223\*.dll $(VERSION) /d
xcopy irda\*.dll $(VERSION) /d
+!IFDEF LUA_DIR
+ xcopy lua\*.dll $(VERSION) /d
+!ENDIF
xcopy lwres\*.dll $(VERSION) /d
xcopy mate\*.dll $(VERSION) /d
xcopy megaco\*.dll $(VERSION) /d