2003-05-31 Tor Lillqvist <tml@iki.fi> * plug-ins/Makefile.am: Handle twain and winsnap subdirs normally. * configure.in: Set TWAIN and WINSNAP on Win32. Expand Makefiles in these dirs. * plug-ins/twain/Makefile.am * plug-ins/winsnap/Makefile.am: New files, from stable branch. * plug-ins/winsnap/winsnap.c: Make it build with GTK2.
35 lines
582 B
Makefile
35 lines
582 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
twain_LDFLAGS = -mwindows
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = twain
|
|
|
|
twain_SOURCES = \
|
|
tw_func.c \
|
|
tw_func.h \
|
|
tw_util.c \
|
|
tw_util.h \
|
|
twain.c \
|
|
twain.h
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
tw_dump.c \
|
|
tw_dump.h \
|
|
tw_sess.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
|
$(GLIB_LIBS) \
|
|
$(INTLLIBS) \
|
|
-luser32
|