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 / psd / Makefile.am next >
Makefile  |  1998-02-24  |  740b  |  40 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. pluginlibdir = $(gimpplugindir)/plug-ins
  4.  
  5. pluginlib_PROGRAMS = psd
  6.  
  7. psd_SOURCES = \
  8.     psd.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.                     \
  20.     -lc
  21.  
  22. DEPS = \
  23. #    $(top_builddir)/libgimp/libgimpui.la    \
  24. #    $(top_builddir)/libgimp/libgimp.la
  25.  
  26. psd_DEPENDENCIES = $(DEPS)
  27.  
  28. .PHONY: files
  29.  
  30. files:
  31.     @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
  32.       echo $$p; \
  33.     done
  34.     @for subdir in $(SUBDIRS); do \
  35.       files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
  36.       for file in $$files; do \
  37.         echo $$subdir/$$file; \
  38.       done; \
  39.     done
  40.