source: fedd/Makefile @ e83f2f2

axis_examplecompt_changesinfo-ops
Last change on this file since e83f2f2 was fbee30a, checked in by Ted Faber <faber@…>, 13 years ago

Compile WSDL using ZSI 2.0 or ZSI 2.1

  • Property mode set to 100644
File size: 728 bytes
Line 
1
2MODULE_DIR=federation
3
4GENERATED_MODS= ${MODULE_DIR}/fedd_services.py \
5                ${MODULE_DIR}/fedd_internal_services.py \
6                ${MODULE_DIR}/fedd_services_types.py
7WSDL_FILES= ../wsdl/fedd.wsdl ../wsdl/fedd_types.xsd ../wsdl/fedd_internal.wsdl ../wsdl/topdl.xsd
8
9VERSION=3.20
10
11DISTFILES= dist/fedd-${VERSION}.tar.gz
12
13all:    ${GENERATED_MODS}
14
15
16${GENERATED_MODS}:      ${WSDL_FILES}
17        python ./compile_wsdl.py --complexType --output-dir=${MODULE_DIR} ../wsdl/fedd.wsdl
18        python ./compile_wsdl.py --complexType --output-dir=${MODULE_DIR} ../wsdl/fedd_internal.wsdl
19
20clean:
21        rm -f ${GENERATED_MODS} ${MODULE_DIR}/*.pyc *.pyc
22        rm -rf build dist fedd.egg-info MANIFEST
23
24dist:   ${DISTFILES}
25
26dist/fedd-${VERSION}.tar.gz: all
27        python ./setup.py sdist
Note: See TracBrowser for help on using the repository browser.