- Timestamp:
- Dec 12, 2004, 1:25:19 AM (20 years ago)
- 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
- Location:
- swig
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
swig/Makefile.am
r205da86 r77494e7 1 # see ../python/Makefile.am 1 2 EXTRA_DIST = aubio.i 2 3 PYTHON_DIR = ../python/aubio4 SWIG = swig5 #SW_FLAGS = -c++6 # removed -Wall -Wmissing-prototypes -Wmissing-declarations7 SW_CFLAGS = -DJACK_SUPPORT -shared -Werror -Wno-char-subscripts -Wno-unknown-pragmas8 #SW_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations9 SWINCLUDE = -I/usr/include/python2.3 -I../src -I../ext -I/usr/include10 SWLDFLAGS = -L../ext/.libs -laubioext -L../src/.libs -laubio11 12 all:13 $(SWIG) $(SW_FLAGS) -outdir $(PYTHON_DIR) -python aubio.i14 $(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 -
swig/Makefile.in
r205da86 r77494e7 152 152 sysconfdir = @sysconfdir@ 153 153 target_alias = @target_alias@ 154 155 # see ../python/Makefile.am 154 156 EXTRA_DIST = aubio.i 155 156 PYTHON_DIR = ../python/aubio157 SWIG = swig158 #SW_FLAGS = -c++159 # removed -Wall -Wmissing-prototypes -Wmissing-declarations160 SW_CFLAGS = -DJACK_SUPPORT -shared -Werror -Wno-char-subscripts -Wno-unknown-pragmas161 #SW_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations162 SWINCLUDE = -I/usr/include/python2.3 -I../src -I../ext -I/usr/include163 SWLDFLAGS = -L../ext/.libs -laubioext -L../src/.libs -laubio164 157 subdir = swig 165 158 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 230 223 231 224 installdirs: 225 install: install-am 232 226 install-exec: install-exec-am 233 227 install-data: install-data-am … … 307 301 uninstall-info-am 308 302 309 310 all:311 $(SWIG) $(SW_FLAGS) -outdir $(PYTHON_DIR) -python aubio.i312 $(CC) $(SW_CFLAGS) -c aubio_wrap.c $(SWINCLUDE)313 $(CC) $(SW_CFLAGS) aubio_wrap.o -o $(PYTHON_DIR)/_aubiowrapper.so $(SWLDFLAGS)314 315 install:316 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir)317 $(INSTALL) $(PYTHON_DIR)/_aubiowrapper.so $(DESTDIR)$(pkgpythondir)318 $(INSTALL) -m644 $(PYTHON_DIR)/aubiowrapper.py $(DESTDIR)$(pkgpythondir)319 320 clean:321 rm -f aubio_wrap.{c,o} $(PYTHON_DIR)/{_aubiowrapper.so,aubiowrapper.py,aubiowrapper.pyc}322 323 distclean: clean324 303 # Tell versions [3.59,3.63) of GNU make to not export all variables. 325 304 # Otherwise a system limit (for SysV at least) may be exceeded.
Note: See TracChangeset
for help on using the changeset viewer.