forked from AuroraMiddleware/gtk
bc41c3ffcf
Wed Nov 15 18:39:40 2000 Owen Taylor <otaylor@redhat.com> * **/Makefile.am : remove unecessary rules for win32-specific config-substituted targets. If you want these rules, use --enable-maintainer-mode (called automatically by autogen.sh). Stops a lot of unneccessary make-time warnings. * gtk/gtktext{layout,display}.c: Factor in total width as well as screen when figuring alignment for word-wrap as well as no wrap; this is necessary to handle lines that cannot be wrapped at all.
28 lines
527 B
Makefile
28 lines
527 B
Makefile
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)/gdk-pixbuf
|
|
|
|
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
|