gstreamer/libs/resample/Makefile.am
David Schleef 99edd18882 Fixes to properly conditionally compile architecture-dependent code
Original commit message from CVS:
Fixes to properly conditionally compile architecture-dependent code
2001-11-06 12:49:01 +00:00

29 lines
397 B
Makefile

filterdir = $(libdir)/gst
filter_LTLIBRARIES = libresample.la
libresample_la_SOURCES = dtos.c functable.c resample.c resample.h
noinst_HEADERS = resample.h
check_PROGRAMS = test
test_SOURCES = test.c
test_LDADD = libresample.la
if HAVE_CPU_I386
ARCHCFLAGS = -march=i486
else
if HAVE_CPU_PPC
ARCHCFLAGS = -Wa,-m7400
else
ARCHCFLAGS =
endif
endif
CFLAGS += -O2 -ffast-math $(ARCHCFLAGS)