Changeset 5d3f239 for fedd/Makefile


Ignore:
Timestamp:
Dec 1, 2008 3:39:51 PM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
12d7df6
Parents:
f816079
Message:

change package name to avoid conflicts with fedd on install

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/Makefile

    rf816079 r5d3f239  
    11
    2 GENERATED_MODS= fedd/fedd_services.py fedd/fedd_internal_services.py \
    3                 fedd/fedd_services_types.py
     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
    47WSDL_FILES= fedd.wsdl fedd_bindings.wsdl fedd_messages.wsdl fedd_types.xsd \
    58            fedd_internal.wsdl fedd_internal_bindings.wsdl \
     
    1417
    1518${GENERATED_MODS}:      ${WSDL_FILES}
    16         wsdl2py --file fedd.wsdl --complexType --output-dir=fedd
     19        wsdl2py --file fedd.wsdl --complexType --output-dir=${MODULE_DIR}
    1720        wsdl2py --file fedd_internal.wsdl --complexType \
    18                 --types=fedd_services_types --output-dir=fedd
     21                --types=fedd_services_types --output-dir=${MODULE_DIR}
    1922
    2023clean:
    21         rm -f ${GENERATED_MODS} fedd/*.pyc *.pyc
     24        rm -f ${GENERATED_MODS} ${MODULE_DIR}/*.pyc *.pyc
    2225        rm -rf build dist fedd.egg-info MANIFEST
    2326
    2427dist:   ${DISTFILES}
    2528
    26 dist/fedd-1.0.tar.gz: all
     29dist/fedd-${VERSION}.tar.gz: all
    2730        python ./setup.py sdist
Note: See TracChangeset for help on using the changeset viewer.