forked from AuroraMiddleware/gtk
ef79a175b5
Mon Sep 17 11:49:02 2001 Owen Taylor <otaylor@redhat.com> * pixops/*: Mirror GdkInterpType to PixopsInterpType to avoid including gdk-pixbuf headers.
32 lines
589 B
Makefile
32 lines
589 B
Makefile
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) -I$(top_builddir) \
|
|
@GTK_DEBUG_FLAGS@ \
|
|
@GDK_PIXBUF_DEP_CFLAGS@ \
|
|
@STRIP_END@
|
|
|
|
noinst_PROGRAMS = timescale
|
|
|
|
timescale_SOURCES = timescale.c
|
|
timescale_LDADD = libpixops.la $(GLIB_LIBS) -lm
|
|
|
|
if USE_MMX
|
|
mmx_sources = \
|
|
have_mmx.S \
|
|
scale_line_22_33_mmx.S \
|
|
composite_line_22_4a4_mmx.S \
|
|
composite_line_color_22_4a4_mmx.S
|
|
endif
|
|
|
|
libpixops_la_SOURCES = \
|
|
pixops.c \
|
|
pixops.h \
|
|
pixops-internal.h \
|
|
$(mmx_sources)
|
|
|
|
EXTRA_DIST = \
|
|
DETAILS \
|
|
makefile.mingw \
|
|
makefile.mingw.in
|