Try again to add the plugin dir & files.

Thu Feb  4 00:23:26 GMT 1999 Andy Thomas <alt@picnic.demon.co.uk>

	Try again to add the plugin dir & files.
This commit is contained in:
GMT 1999 Andy Thomas 1999-02-04 01:31:33 +00:00 committed by Andy Thomas
parent fa44c95e1f
commit 2851c0da26
7 changed files with 4433 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Feb 4 00:23:26 GMT 1999 Andy Thomas <alt@picnic.demon.co.uk>
Tried again to add the plugin dir & files.
Thu Feb 4 00:07:13 GMT 1999 Andy Thomas <alt@picnic.demon.co.uk>
Changed:-

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,6 @@
Makefile.in
Makefile
.deps
_libs
.libs
plugindetails

View File

@ -0,0 +1,35 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(gimpplugindir)/plug-ins
pluginlib_PROGRAMS = plugindetails
plugindetails_SOURCES = \
plugindetails.c
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS)
DEPS = \
$(top_builddir)/libgimp/libgimp.la
plugindetails_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

File diff suppressed because it is too large Load Diff