mirror of https://github.com/GNOME/gimp.git
41 lines
692 B
Makefile
41 lines
692 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = print
|
|
|
|
print_SOURCES = \
|
|
print-escp2.c \
|
|
print-pcl.c \
|
|
print-ps.c \
|
|
print-util.c \
|
|
print.c \
|
|
print.h \
|
|
gimp_color_window.c \
|
|
gimp_main_window.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
|
@LP_DEF@ \
|
|
@LPSTAT_DEF@ \
|
|
@LPR_DEF@ \
|
|
@LPC_DEF@
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|