aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-06-21 06:31:06 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-06-21 06:31:06 +0000
commit1205ee2a14db0f81559a6e1e201c6dcbdb8fcea1 (patch)
tree672d19e872dc4cecc039abdf1efeace798a8bf38 /plugins/Makefile.nmake
parent98d7d926611af4e3c034dbd942a2fe3106462d63 (diff)
From Christian Durrer:
I hope this is the right place to send a patch for a new dissector plugin. The telegram it dissects are for the communication between PLCs (Programmable logic controller) from the company Saia Burgess Controls Ltd. (http://www.start-controls.com, http://www.saia-burgess.com or http://www.sbc-support.ch). The protocol is named Ether-S-Bus (the PLCs are called PCD2, PCD3, PCD4). svn path=/trunk/; revision=18526
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 1f6425e304..e232f11e76 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -30,6 +30,7 @@ all: \
rlm \
rtnet \
rudp \
+ sbus \
stats_tree \
v5ua
@@ -151,6 +152,11 @@ rudp::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
+sbus::
+ cd sbus
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+
stats_tree::
cd stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
@@ -209,6 +215,8 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../rudp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../sbus
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../v5ua
@@ -262,6 +270,8 @@ distclean: clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../rudp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../sbus
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../v5ua
@@ -313,6 +323,8 @@ maintainer-clean: distclean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../rudp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
+ cd ../sbus
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../v5ua
@@ -353,6 +365,7 @@ install-plugins:
xcopy rlm\*.dll $(VERSION) /d
xcopy rtnet\*.dll $(VERSION) /d
xcopy rudp\*.dll $(VERSION) /d
+ xcopy sbus\*.dll $(VERSION) /d
xcopy stats_tree\*.dll $(VERSION) /d
xcopy v5ua\*.dll $(VERSION) /d
!ENDIF