mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
6661696de0
Original commit message from CVS: Various fixes for the build/install problems update to the docs/manual. Added a simple helloworld example.
22 lines
748 B
Makefile
22 lines
748 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstidct.la
|
|
|
|
libgstidct_la_SOURCES = fastintidct.c floatidct.c gstidct.c intidct.c mmxidct.S mmx32idct.c
|
|
|
|
libgstidctincludedir = $(includedir)/gst/libs/gstidct
|
|
libgstidctinclude_HEADERS = gstidct.h
|
|
|
|
bin_PROGRAMS = ieeetest
|
|
|
|
ieeetest_SOURCES = ieeetest.c
|
|
ieeetest_LDADD = libgstidct.la $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|
|
ieeetest_CFLAGS = $(shell gnome-config --cflags gnomeui) -g -Wall
|
|
ieeetest_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
noinst_HEADERS = dct.h
|
|
|
|
CFLAGS += -Wall -O2 -funroll-all-loops -finline-functions -ffast-math
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|