mirror of https://github.com/GNOME/gimp.git
47 lines
791 B
Makefile
47 lines
791 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pluginlibdir = $(gimpplugindir)/plug-ins
|
|
|
|
pluginlib_PROGRAMS = print
|
|
|
|
print_SOURCES = \
|
|
print-escp2.c \
|
|
print-pcl.c \
|
|
print-ps.c \
|
|
print-util.c \
|
|
print.c \
|
|
print.h
|
|
|
|
CPPFLAGS = \
|
|
@LP_DEF@ \
|
|
@LPSTAT_DEF@ \
|
|
@LPR_DEF@ \
|
|
@LPC_DEF@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS)
|
|
|
|
DEPS = \
|
|
$(top_builddir)/libgimp/libgimp.la
|
|
|
|
print_DEPENDENCIES = $(DEPS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|
|
@for subdir in $(SUBDIRS); do \
|
|
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
|
for file in $$files; do \
|
|
echo $$subdir/$$file; \
|
|
done; \
|
|
done
|