mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 13:56:32 +00:00
bfdb2aa90d
Original commit message from CVS: Remove the test program, since it's buggy, in order not to hold up make distcheck
29 lines
400 B
Makefile
29 lines
400 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)
|
|
|