source: fedd/Makefile @ 49e66b4

axis_examplecompt_changesinfo-ops
Last change on this file since 49e66b4 was 49e66b4, checked in by Ted Faber <faber@…>, 14 years ago

Remove old ABAC dependencies

  • Property mode set to 100644
File size: 738 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.01
10
11DISTFILES= dist/fedd-${VERSION}.tar.gz
12
13all:    ${GENERATED_MODS}
14
15
16${GENERATED_MODS}:      ${WSDL_FILES}
17        wsdl2py --file ../wsdl/fedd.wsdl --complexType --output-dir=${MODULE_DIR}
18        wsdl2py --file ../wsdl/fedd_internal.wsdl --complexType \
19                --types=fedd_services_types --output-dir=${MODULE_DIR}
20
21clean:
22        rm -f ${GENERATED_MODS} ${MODULE_DIR}/*.pyc *.pyc
23        rm -rf build dist fedd.egg-info MANIFEST
24
25dist:   ${DISTFILES}
26
27dist/fedd-${VERSION}.tar.gz: all
28        python ./setup.py sdist
Note: See TracBrowser for help on using the repository browser.