Changeset 77494e7 for swig/Makefile.am


Ignore:
Timestamp:
Dec 12, 2004, 1:25:19 AM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
e6d4ccb
Parents:
205da86
Message:

bumping to 0.1.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • swig/Makefile.am

    r205da86 r77494e7  
     1# see ../python/Makefile.am
    12EXTRA_DIST = aubio.i
    2 
    3 PYTHON_DIR = ../python/aubio
    4 SWIG = swig
    5 #SW_FLAGS = -c++
    6 # removed -Wall -Wmissing-prototypes -Wmissing-declarations
    7 SW_CFLAGS = -DJACK_SUPPORT -shared -Werror -Wno-char-subscripts -Wno-unknown-pragmas
    8 #SW_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations
    9 SWINCLUDE = -I/usr/include/python2.3 -I../src -I../ext -I/usr/include
    10 SWLDFLAGS = -L../ext/.libs -laubioext -L../src/.libs -laubio
    11 
    12 all:
    13         $(SWIG) $(SW_FLAGS) -outdir $(PYTHON_DIR) -python aubio.i
    14         $(CC) $(SW_CFLAGS) -c aubio_wrap.c $(SWINCLUDE)
    15         $(CC) $(SW_CFLAGS) aubio_wrap.o -o $(PYTHON_DIR)/_aubiowrapper.so $(SWLDFLAGS)
    16 
    17 install:
    18         $(mkinstalldirs) $(DESTDIR)$(pkgpythondir)
    19         $(INSTALL) $(PYTHON_DIR)/_aubiowrapper.so $(DESTDIR)$(pkgpythondir)
    20         $(INSTALL) -m644 $(PYTHON_DIR)/aubiowrapper.py $(DESTDIR)$(pkgpythondir)
    21 
    22 clean:
    23         rm -f aubio_wrap.{c,o} $(PYTHON_DIR)/{_aubiowrapper.so,aubiowrapper.py,aubiowrapper.pyc}
    24 
    25 distclean: clean
Note: See TracChangeset for help on using the changeset viewer.