Changeset 1101 for trunk/lang/python


Ignore:
Timestamp:
Aug 6, 2008, 10:23:57 AM (16 years ago)
Author:
gah
Message:

language binding fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lang/python/Makefile.in

    r1100 r1101  
    1212INSTALL         = @INSTALL@
    1313MKDIR_P         = @MKDIR_P@
     14LN_S            = @LN_S@
    1415INSTALL_PROGRAM = ${INSTALL} -m 755
    1516INSTALL_DATA    = ${INSTALL} -m 644
     
    3132# into a temporary directory.
    3233#
    33 all: copy_sources $(envfile)
     34all: link_sources $(envfile)
    3435        $(PYTHON) setup.py build_ext $(PYTHON_FLAGS) build
    3536
    36 copy_sources:   
    37         $(RM) -r build/tmp
     37link_sources: build/tmp
    3838        $(MKDIR_P) build/tmp
    39         $(INSTALL_DATA) $(srcdir)/Rappture/*.cc build/tmp
     39        $(LN_S) $(srcdir)/Rappture/*.cc build/tmp
    4040 
    4141install:
Note: See TracChangeset for help on using the changeset viewer.