## Process this file with automake to produce Makefile.in libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la if PLATFORM_WIN32 no_undefined = -no-undefined endif if PLATFORM_WIN32 else libm = -lm endif if OS_WIN32 gimpmath_def = gimpmath.def libgimpmath_export_symbols = -export-symbols gimpmath.def install-libtool-import-lib: $(INSTALL) .libs/libgimpmath-$(LT_RELEASE).dll.a $(DESTDIR)$(libdir) uninstall-libtool-import-lib: -rm $(DESTDIR)$(libdir)/libgimpmath-$(LT_RELEASE).dll.a else install-libtool-import-lib: uninstall-libtool-import-lib: endif if MS_LIB_AVAILABLE noinst_DATA = gimpmath-$(LT_RELEASE).lib install-ms-lib: $(INSTALL) gimpmath-$(LT_RELEASE).lib $(DESTDIR)$(libdir) uninstall-ms-lib: -rm $(DESTDIR)$(libdir)/gimpmath-$(LT_RELEASE).lib gimpmath-@LT_RELEASE@.lib: gimpmath.def lib -name:libgimpmath-$(LT_RELEASE)-@LT_CURRENT_MINUS_AGE@.dll -def:gimpmath.def -out:$@ else install-ms-lib: uninstall-ms-lib: endif libgimpmathincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpmath AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpMath\" \ @GIMP_THREAD_FLAGS@ INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) EXTRA_DIST = \ makefile.msc \ gimpmath.def lib_LTLIBRARIES = libgimpmath-1.3.la libgimpmath_1_3_la_SOURCES = \ gimpmath.h \ gimpmathtypes.h \ gimpmatrix.c \ gimpmatrix.h \ gimpmd5.c \ gimpmd5.h \ gimpvector.c \ gimpvector.h libgimpmathinclude_HEADERS = \ gimpmath.h \ gimpmathtypes.h \ gimpmatrix.h \ gimpmd5.h \ gimpvector.h libgimpmath_1_3_la_LDFLAGS = \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ $(no_undefined) \ $(libgimpmath_export_symbols) libgimpmath_1_3_la_DEPENDENCIES = $(gimpmath_def) $(libgimpbase) libgimpmath_1_3_la_LIBADD = $(GLIB_LIBS) $(libm) # # test programs, not to be built by default and never installed # TESTS = test-md5$(EXEEXT) EXTRA_PROGRAMS = test-md5 test_md5_DEPENDENCIES = \ $(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la test_md5_LDADD = \ $(GLIB_LIBS) \ $(test_md5_DEPENDENCIES) install-data-local: install-ms-lib install-libtool-import-lib uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib