mirror of https://github.com/GNOME/gimp.git
34 lines
565 B
Makefile
34 lines
565 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = xjt
|
|
|
|
EXTRA_DIST = README README_xjt_fileformat.txt
|
|
|
|
xjt_SOURCES = \
|
|
xjt.c \
|
|
xjpeg.c \
|
|
xjpeg.h \
|
|
xpdb_calls.c \
|
|
xpdb_calls.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS) \
|
|
$(LIBJPEG) \
|
|
$(INTLLIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|