summaryrefslogtreecommitdiff
path: root/cpp/src/protocol_gen.mak
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-11-20 01:04:03 +0000
committerStephen D. Huston <shuston@apache.org>2009-11-20 01:04:03 +0000
commit90594c0790b6af0b29426f64b85fa4916df5e239 (patch)
treed27378d9344769115c0211039aae97fdd513f7be /cpp/src/protocol_gen.mak
parent9022d18bbf269d800eeedce9aafc8bb7c9496b4f (diff)
downloadqpid-python-90594c0790b6af0b29426f64b85fa4916df5e239.tar.gz
Removed the Visual Studio solution/project files, as these are now generated by CMake. Added CMakeLists.txt files to Makefile.am, and all other needed support files so that the 'make dist' supplies all needed items for building a release kit on Windows. Fixes QPID-2134
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@882373 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/protocol_gen.mak')
-rw-r--r--cpp/src/protocol_gen.mak28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpp/src/protocol_gen.mak b/cpp/src/protocol_gen.mak
deleted file mode 100644
index 6ba8a9d3e9..0000000000
--- a/cpp/src/protocol_gen.mak
+++ /dev/null
@@ -1,28 +0,0 @@
-# This nmake file generates the Qpid protocol files from the AMQP XML spec
-# and the management sources from the management XML specs.
-#
-# The Visual Studio projects assume the existence of the generated files.
-# The generated files are valid in Apache-released kits but must be generated
-# using this makefile for Windows developers working from the source
-# repository.
-
-specdir = ..\..\specs
-specs = $(specdir)\amqp.0-10-qpid-errata.xml ..\xml\cluster.xml
-
-rgen_dir=..\rubygen
-
-mgen_dir=..\managementgen
-mgmt_specs=$(specdir)\management-schema.xml \
- .\qpid\acl\management-schema.xml \
- .\qpid\cluster\management-schema.xml
-
-all: rubygen.mk managementgen.mk
-
-rubygen.mk: $(specs)
- ruby -I $(rgen_dir) $(rgen_dir)\generate gen $(specs) all rubygen.mk
-
-# Management code generation... uses Python
-
-managementgen.mk: $(mgmt_specs)
- python $(mgen_dir)\qmf-gen -m managementgen.mk -q -b -o gen\qmf $(mgmt_specs)
-