home *** CD-ROM | disk | FTP | other *** search
/ ftp.sunet.sepub/pictures / 2014.11.ftp.sunet.se-pictures.tar / ftp.sunet.se / pub / pictures / ACiD-artpacks / programs / unix / editors / gimp-plugins-unstable-0_99_23_tar.gz / gimp-plugins-unstable-0_99_23_tar / gimp-plugins-unstable-0.99.23 / tdi / Makefile.am next >
Makefile  |  1998-02-24  |  730b  |  39 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. pluginlibdir = $(gimpplugindir)/plug-ins
  4.  
  5. pluginlib_PROGRAMS = tdi
  6.  
  7. tdi_SOURCES = \
  8.     tdi.c
  9.  
  10. INCLUDES = \
  11.     $(X_CFLAGS)            \
  12. #    -I$(top_srcdir)            \
  13.     -I$(includedir)
  14.  
  15. LDADD = \
  16. #    $(top_builddir)/libgimp/libgimpui.la    \
  17. #    $(top_builddir)/libgimp/libgimp.la    \
  18.     $(X_LIBS)                \
  19.     -lc
  20.  
  21. DEPS = \
  22. #    $(top_builddir)/libgimp/libgimpui.la    \
  23. #    $(top_builddir)/libgimp/libgimp.la
  24.  
  25. tdi_DEPENDENCIES = $(DEPS)
  26.  
  27. .PHONY: files
  28.  
  29. files:
  30.     @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
  31.       echo $$p; \
  32.     done
  33.     @for subdir in $(SUBDIRS); do \
  34.       files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
  35.       for file in $$files; do \
  36.         echo $$subdir/$$file; \
  37.       done; \
  38.     done
  39.