diff options
Diffstat (limited to 'src/libfaad/fftw/Makefile.am')
-rw-r--r-- | src/libfaad/fftw/Makefile.am | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/libfaad/fftw/Makefile.am b/src/libfaad/fftw/Makefile.am new file mode 100644 index 000000000..5a9c0a0ba --- /dev/null +++ b/src/libfaad/fftw/Makefile.am @@ -0,0 +1,38 @@ +## +## Process this file with automake to produce Makefile.in +## + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +noinst_LTLIBRARIES = libfftw.la + +INCLUDES = -I$(srcdir) + +NOTW_CODELETS= fn_1.c fn_2.c fn_3.c fn_4.c fn_5.c fn_6.c fn_7.c fn_8.c fn_9.c fn_10.c fn_11.c fn_12.c fn_13.c fn_14.c fn_15.c fn_16.c fn_32.c fn_64.c +TWID_CODELETS= ftw_2.c ftw_3.c ftw_4.c ftw_5.c ftw_6.c ftw_7.c ftw_8.c ftw_9.c ftw_10.c ftw_16.c ftw_32.c ftw_64.c +NOTWI_CODELETS= fni_1.c fni_2.c fni_3.c fni_4.c fni_5.c fni_6.c fni_7.c fni_8.c fni_9.c fni_10.c fni_11.c fni_12.c fni_13.c fni_14.c fni_15.c fni_16.c fni_32.c fni_64.c +TWIDI_CODELETS= ftwi_2.c ftwi_3.c ftwi_4.c ftwi_5.c ftwi_6.c ftwi_7.c ftwi_8.c ftwi_9.c ftwi_10.c ftwi_16.c ftwi_32.c ftwi_64.c + +CODELETS=$(NOTW_CODELETS) $(TWID_CODELETS) $(NOTWI_CODELETS) $(TWIDI_CODELETS) +OTHERSRC = timer.c config.c planner.c twiddle.c executor.c \ + generic.c fftwnd.c malloc.c wisdom.c wisdomio.c putils.c rader.c + + +libfftw_la_SOURCES = $(CODELETS) $(OTHERSRC) + +noinst_HEADERS = fftw.h fftw-int.h f77_func.h +EXTRA_DIST = fftwf77.c + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" + +install-debug: debug + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in |