mirror of https://github.com/GNOME/gimp.git
36 lines
626 B
Makefile
36 lines
626 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libapppaint-funcs.a
|
|
|
|
if HAVE_ASM_MMX
|
|
mmx_sources = paint-funcs-simd.S
|
|
else
|
|
mmx_sources =
|
|
endif
|
|
|
|
libapppaint_funcs_a_SOURCES = \
|
|
paint-funcs-types.h \
|
|
paint-funcs.c \
|
|
paint-funcs.h \
|
|
paint-funcs-generic.h \
|
|
paint-funcs-mmx.h \
|
|
$(mmx_sources)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
AM_CCASFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app
|
|
|
|
EXTRA_DIST = makefile.msc
|