bunch of cvsignores added
This commit is contained in:
parent
fc2f4983c1
commit
3d987d673d
157 changed files with 4027 additions and 12743 deletions
9
.cvsignore
Normal file
9
.cvsignore
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
configure
|
||||
config.log
|
||||
config.h
|
||||
config.cache
|
||||
stamp-h
|
||||
gimprc
|
||||
config.status
|
||||
193
aclocal.m4
vendored
193
aclocal.m4
vendored
|
|
@ -123,6 +123,199 @@ for am_file in <<$1>>; do
|
|||
done<<>>dnl>>)
|
||||
changequote([,]))])
|
||||
|
||||
|
||||
# serial 17 AM_PROG_LIBTOOL
|
||||
AC_DEFUN(AM_PROG_LIBTOOL,
|
||||
[AC_REQUIRE([AC_CANONICAL_HOST])
|
||||
AC_REQUIRE([AC_PROG_RANLIB])
|
||||
AC_REQUIRE([AC_PROG_CC])
|
||||
AC_REQUIRE([AM_PROG_LD])
|
||||
AC_REQUIRE([AM_PROG_NM])
|
||||
AC_REQUIRE([AC_PROG_LN_S])
|
||||
|
||||
# Always use our own libtool.
|
||||
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
||||
AC_SUBST(LIBTOOL)
|
||||
|
||||
dnl Allow the --disable-shared flag to stop us from building shared libs.
|
||||
AC_ARG_ENABLE(shared,
|
||||
[ --enable-shared build shared libraries [default=yes]],
|
||||
[if test "$enableval" = no; then
|
||||
libtool_enable_shared=no
|
||||
else
|
||||
libtool_enable_shared=yes
|
||||
fi])
|
||||
test -n "$libtool_enable_shared" && enable_shared="$libtool_enable_shared"
|
||||
libtool_shared=
|
||||
test "$enable_shared" = no && libtool_shared=" --disable-shared"
|
||||
|
||||
dnl Allow the --disable-static flag to stop us from building static libs.
|
||||
AC_ARG_ENABLE(static,
|
||||
[ --enable-static build static libraries [default=yes]],
|
||||
[if test "$enableval" = no; then
|
||||
libtool_enable_static=no
|
||||
else
|
||||
libtool_enable_static=yes
|
||||
fi])
|
||||
test -n "$libtool_enable_static" && enable_static="$libtool_enable_static"
|
||||
libtool_static=
|
||||
test "$enable_static" = no && libtool_static=" --disable-static"
|
||||
|
||||
libtool_flags="$libtool_shared$libtool_static"
|
||||
test "$silent" = yes && libtool_flags="$libtool_flags --silent"
|
||||
test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
|
||||
test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
|
||||
|
||||
# Some flags need to be propagated to the compiler or linker for good
|
||||
# libtool support.
|
||||
[case "$host" in
|
||||
*-*-irix6*)
|
||||
ac_save_CFLAGS="$CFLAGS"
|
||||
flag_passed=no
|
||||
for f in -32 -64 -n32 ABI -cckr -mips1 -mips2 -mips3 -mips4; do
|
||||
case "$f" in
|
||||
ABI)
|
||||
test -n "$SGI_ABI" && flag_passed=yes
|
||||
if test "$flag_passed" = no && test "$ac_cv_prog_gcc" = yes; then
|
||||
# Choose the ABI flag according to GCC's specs.
|
||||
if $CC -dumpspecs 2>&1 | sed '/^\*link:$/,/^$/!d' | egrep -e '[ ]-32' >/dev/null; then
|
||||
LD="${LD-ld} -32"
|
||||
else
|
||||
LD="${LD-ld} -n32"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
|
||||
*)
|
||||
if echo " $CC $CFLAGS " | egrep -e "[ ]$f[ ]" > /dev/null; then
|
||||
flag_passed=yes
|
||||
LD="${LD-ld} $f"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
done
|
||||
CFLAGS="$ac_save_CFLAGS"
|
||||
;;
|
||||
|
||||
*-*-sco3.2v5*)
|
||||
# On SCO OpenServer 5, we need -belf to get full-featured binaries.
|
||||
CFLAGS="$CFLAGS -belf"
|
||||
;;
|
||||
esac]
|
||||
|
||||
# Actually configure libtool. ac_aux_dir is where install-sh is found.
|
||||
CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
||||
LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \
|
||||
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \
|
||||
$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
|
||||
|| AC_MSG_ERROR([libtool configure failed])
|
||||
])
|
||||
|
||||
# AM_PROG_LD - find the path to the GNU or non-GNU linker
|
||||
AC_DEFUN(AM_PROG_LD,
|
||||
[AC_ARG_WITH(gnu-ld,
|
||||
[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]],
|
||||
test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
|
||||
AC_REQUIRE([AC_PROG_CC])
|
||||
ac_prog=ld
|
||||
if test "$ac_cv_prog_gcc" = yes; then
|
||||
# Check if gcc -print-prog-name=ld gives a path.
|
||||
AC_MSG_CHECKING([for ld used by GCC])
|
||||
ac_prog=`($CC -print-prog-name=ld) 2>&5`
|
||||
case "$ac_prog" in
|
||||
# Accept absolute paths.
|
||||
/*)
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
"")
|
||||
# If it fails, then pretend we aren't using GCC.
|
||||
ac_prog=ld
|
||||
;;
|
||||
*)
|
||||
# If it is relative, then search for the first ld in PATH.
|
||||
with_gnu_ld=unknown
|
||||
;;
|
||||
esac
|
||||
elif test "$with_gnu_ld" = yes; then
|
||||
AC_MSG_CHECKING([for GNU ld])
|
||||
else
|
||||
AC_MSG_CHECKING([for non-GNU ld])
|
||||
fi
|
||||
AC_CACHE_VAL(ac_cv_path_LD,
|
||||
[if test -z "$LD"; then
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
||||
for ac_dir in $PATH; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
if test -f "$ac_dir/$ac_prog"; then
|
||||
ac_cv_path_LD="$ac_dir/$ac_prog"
|
||||
# Check to see if the program is GNU ld. I'd rather use --version,
|
||||
# but apparently some GNU ld's only accept -v.
|
||||
# Break only if it was the GNU/non-GNU ld that we prefer.
|
||||
if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
|
||||
test "$with_gnu_ld" != no && break
|
||||
else
|
||||
test "$with_gnu_ld" != yes && break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
else
|
||||
ac_cv_path_LD="$LD" # Let the user override the test with a path.
|
||||
fi])
|
||||
LD="$ac_cv_path_LD"
|
||||
if test -n "$LD"; then
|
||||
AC_MSG_RESULT($LD)
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
|
||||
AC_SUBST(LD)
|
||||
AM_PROG_LD_GNU
|
||||
])
|
||||
|
||||
AC_DEFUN(AM_PROG_LD_GNU,
|
||||
[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
|
||||
[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
|
||||
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
|
||||
ac_cv_prog_gnu_ld=yes
|
||||
else
|
||||
ac_cv_prog_gnu_ld=no
|
||||
fi])
|
||||
])
|
||||
|
||||
# AM_PROG_NM - find the path to a BSD-compatible name lister
|
||||
AC_DEFUN(AM_PROG_NM,
|
||||
[AC_MSG_CHECKING([for BSD-compatible nm])
|
||||
AC_CACHE_VAL(ac_cv_path_NM,
|
||||
[case "$NM" in
|
||||
/*)
|
||||
ac_cv_path_NM="$NM" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
||||
for ac_dir in /usr/ucb $PATH /bin; do
|
||||
test -z "$ac_dir" && dir=.
|
||||
if test -f $ac_dir/nm; then
|
||||
# Check to see if the nm accepts a BSD-compat flag.
|
||||
if ($ac_dir/nm -B /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
|
||||
ac_cv_path_NM="$ac_dir/nm -B"
|
||||
elif ($ac_dir/nm -p /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
|
||||
ac_cv_path_NM="$ac_dir/nm -p"
|
||||
else
|
||||
ac_cv_path_NM="$ac_dir/nm"
|
||||
fi
|
||||
break
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
|
||||
;;
|
||||
esac])
|
||||
NM="$ac_cv_path_NM"
|
||||
AC_MSG_RESULT([$NM])
|
||||
AC_SUBST(NM)
|
||||
])
|
||||
|
||||
# Add --enable-maintainer-mode option to configure.
|
||||
# From Jim Meyering
|
||||
|
||||
|
|
|
|||
4
app/.cvsignore
Normal file
4
app/.cvsignore
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
.deps
|
||||
gimp
|
||||
3
docs/.cvsignore
Normal file
3
docs/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
pdb.info*
|
||||
3653
docs/pdb.texi
3653
docs/pdb.texi
File diff suppressed because it is too large
Load diff
11768
docs/pdb_dump
11768
docs/pdb_dump
File diff suppressed because it is too large
Load diff
6
libgimp/.cvsignore
Normal file
6
libgimp/.cvsignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
*.lo
|
||||
_libs
|
||||
.deps
|
||||
*.la
|
||||
10
libtool
10
libtool
|
|
@ -6,9 +6,9 @@
|
|||
# This program was configured as follows,
|
||||
# on host bogus:
|
||||
#
|
||||
# CC="/usr/bin/gcc" CFLAGS="-g -O2" CPPFLAGS="" \
|
||||
# LD="" NM="" RANLIB="ranlib" LN_S="" \
|
||||
# ./ltconfig --with-gcc --no-verify ./ltmain.sh i486-pc-linux-gnu
|
||||
# CC="gcc" CFLAGS="-g -O2" CPPFLAGS="" \
|
||||
# LD="/usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld" NM="/usr/bin/nm -B" RANLIB="ranlib" LN_S="ln -s" \
|
||||
# ./ltconfig --with-gcc --with-gnu-ld --no-verify ./ltmain.sh i486-pc-linux-gnu
|
||||
#
|
||||
# Compiler and other test output produced by ltconfig, useful for
|
||||
# debugging ltconfig, is in ./config.log if it exists.
|
||||
|
|
@ -30,10 +30,10 @@ host="i486-pc-linux-gnu"
|
|||
AR="ar"
|
||||
|
||||
# The default C compiler.
|
||||
CC="/usr/bin/gcc"
|
||||
CC="gcc"
|
||||
|
||||
# The linker used to build libraries.
|
||||
LD="/usr/bin/ld"
|
||||
LD="/usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld"
|
||||
|
||||
# Whether we need hard or soft links.
|
||||
LN_S="ln -s"
|
||||
|
|
|
|||
5
plug-ins/AlienMap/.cvsignore
Normal file
5
plug-ins/AlienMap/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
AlienMap
|
||||
5
plug-ins/Anamorphose/.cvsignore
Normal file
5
plug-ins/Anamorphose/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
Anamorphose
|
||||
5
plug-ins/CEL/.cvsignore
Normal file
5
plug-ins/CEL/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
CEL
|
||||
5
plug-ins/CML_explorer/.cvsignore
Normal file
5
plug-ins/CML_explorer/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
CML_explorer
|
||||
5
plug-ins/CentralReflection/.cvsignore
Normal file
5
plug-ins/CentralReflection/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
CentralReflection
|
||||
5
plug-ins/Curtain/.cvsignore
Normal file
5
plug-ins/Curtain/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
Curtain
|
||||
5
plug-ins/Encript_Decript/.cvsignore
Normal file
5
plug-ins/Encript_Decript/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
Encript_Decript
|
||||
5
plug-ins/Julia/.cvsignore
Normal file
5
plug-ins/Julia/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
Julia
|
||||
5
plug-ins/Mandelbrot/.cvsignore
Normal file
5
plug-ins/Mandelbrot/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
Mandelbrot
|
||||
5
plug-ins/MapObject/.cvsignore
Normal file
5
plug-ins/MapObject/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
MapObject
|
||||
5
plug-ins/aa/.cvsignore
Normal file
5
plug-ins/aa/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
aa
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -118,9 +121,9 @@ default: all
|
|||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/aa/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/aa/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -158,6 +161,11 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/aa
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/aa/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|
|
|
|||
5
plug-ins/align_layers/.cvsignore
Normal file
5
plug-ins/align_layers/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
align_layers
|
||||
5
plug-ins/animationplay/.cvsignore
Normal file
5
plug-ins/animationplay/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
animationplay
|
||||
5
plug-ins/apply_lens/.cvsignore
Normal file
5
plug-ins/apply_lens/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
apply_lens
|
||||
5
plug-ins/autocrop/.cvsignore
Normal file
5
plug-ins/autocrop/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
autocrop
|
||||
5
plug-ins/autostretch_hsv/.cvsignore
Normal file
5
plug-ins/autostretch_hsv/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
autostretch_hsv
|
||||
5
plug-ins/blinds/.cvsignore
Normal file
5
plug-ins/blinds/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
blinds
|
||||
5
plug-ins/blur/.cvsignore
Normal file
5
plug-ins/blur/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
blur
|
||||
5
plug-ins/blur2/.cvsignore
Normal file
5
plug-ins/blur2/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
blur2
|
||||
5
plug-ins/bmp/.cvsignore
Normal file
5
plug-ins/bmp/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
bmp
|
||||
5
plug-ins/bumpmap/.cvsignore
Normal file
5
plug-ins/bumpmap/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
bumpmap
|
||||
5
plug-ins/bz2/.cvsignore
Normal file
5
plug-ins/bz2/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
bz2
|
||||
5
plug-ins/c_astretch/.cvsignore
Normal file
5
plug-ins/c_astretch/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
c_astretch
|
||||
5
plug-ins/checkerboard/.cvsignore
Normal file
5
plug-ins/checkerboard/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
checkerboard
|
||||
5
plug-ins/compose/.cvsignore
Normal file
5
plug-ins/compose/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
compose
|
||||
5
plug-ins/convmatrix/.cvsignore
Normal file
5
plug-ins/convmatrix/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
convmatrix
|
||||
5
plug-ins/coordmap/.cvsignore
Normal file
5
plug-ins/coordmap/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
coordmap
|
||||
5
plug-ins/cubism/.cvsignore
Normal file
5
plug-ins/cubism/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
cubism
|
||||
5
plug-ins/dbbrowser/.cvsignore
Normal file
5
plug-ins/dbbrowser/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
dbbrowser
|
||||
5
plug-ins/decompose/.cvsignore
Normal file
5
plug-ins/decompose/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
decompose
|
||||
5
plug-ins/deinterlace/.cvsignore
Normal file
5
plug-ins/deinterlace/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
deinterlace
|
||||
5
plug-ins/depthmerge/.cvsignore
Normal file
5
plug-ins/depthmerge/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
depthmerge
|
||||
5
plug-ins/despeckle/.cvsignore
Normal file
5
plug-ins/despeckle/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
despeckle
|
||||
5
plug-ins/destripe/.cvsignore
Normal file
5
plug-ins/destripe/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
destripe
|
||||
5
plug-ins/dgimp/.cvsignore
Normal file
5
plug-ins/dgimp/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
dgimp
|
||||
5
plug-ins/diffraction/.cvsignore
Normal file
5
plug-ins/diffraction/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
diffraction
|
||||
5
plug-ins/displace/.cvsignore
Normal file
5
plug-ins/displace/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
displace
|
||||
5
plug-ins/edge/.cvsignore
Normal file
5
plug-ins/edge/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
edge
|
||||
5
plug-ins/emboss/.cvsignore
Normal file
5
plug-ins/emboss/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
emboss
|
||||
5
plug-ins/engrave/.cvsignore
Normal file
5
plug-ins/engrave/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
engrave
|
||||
5
plug-ins/exchange/.cvsignore
Normal file
5
plug-ins/exchange/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
exchange
|
||||
5
plug-ins/faxg3/.cvsignore
Normal file
5
plug-ins/faxg3/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
faxg3
|
||||
5
plug-ins/figures/.cvsignore
Normal file
5
plug-ins/figures/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
figures
|
||||
5
plug-ins/film/.cvsignore
Normal file
5
plug-ins/film/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
film
|
||||
5
plug-ins/fits/.cvsignore
Normal file
5
plug-ins/fits/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
fits
|
||||
5
plug-ins/flame/.cvsignore
Normal file
5
plug-ins/flame/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
flame
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -136,6 +139,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|||
|
||||
TAR = tar
|
||||
GZIP = --best
|
||||
DEP_FILES = .deps/tiff.P
|
||||
SOURCES = $(tiff_SOURCES)
|
||||
OBJECTS = $(tiff_OBJECTS)
|
||||
|
||||
|
|
@ -144,9 +148,9 @@ default: all
|
|||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/flame/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/flame/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -231,12 +235,43 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/flame
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/flame/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file; \
|
||||
done
|
||||
|
||||
MKDEP = $(CC) -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
-include .deps/.P
|
||||
.deps/.P: $(BUILT_SOURCES)
|
||||
echo > $@
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
mostlyclean-depend:
|
||||
|
||||
clean-depend:
|
||||
|
||||
distclean-depend:
|
||||
|
||||
maintainer-clean-depend:
|
||||
-rm -rf .deps
|
||||
|
||||
.deps/%.P: %.c
|
||||
@echo "Computing dependencies for $<..."
|
||||
@o='o'; \
|
||||
test -n "$o" && o='$$o'; \
|
||||
$(MKDEP) $< >$@.tmp \
|
||||
&& sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," < $@.tmp > $@ \
|
||||
&& rm -f $@.tmp
|
||||
info:
|
||||
dvi:
|
||||
check: all
|
||||
|
|
@ -276,22 +311,22 @@ maintainer-clean-generic:
|
|||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
mostlyclean: mostlyclean-pluginlibPROGRAMS mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-tags \
|
||||
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
|
||||
mostlyclean-generic
|
||||
|
||||
clean: clean-pluginlibPROGRAMS clean-compile clean-libtool clean-tags \
|
||||
clean-generic mostlyclean
|
||||
clean-depend clean-generic mostlyclean
|
||||
|
||||
distclean: distclean-pluginlibPROGRAMS distclean-compile \
|
||||
distclean-libtool distclean-tags distclean-generic \
|
||||
clean
|
||||
distclean-libtool distclean-tags distclean-depend \
|
||||
distclean-generic clean
|
||||
-rm -f config.status
|
||||
-rm -f libtool
|
||||
|
||||
maintainer-clean: maintainer-clean-pluginlibPROGRAMS \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-generic \
|
||||
distclean
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
|
|
@ -302,8 +337,9 @@ install-pluginlibPROGRAMS mostlyclean-compile distclean-compile \
|
|||
clean-compile maintainer-clean-compile mostlyclean-libtool \
|
||||
distclean-libtool clean-libtool maintainer-clean-libtool tags \
|
||||
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
||||
distdir info dvi installcheck install-exec install-data install \
|
||||
uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
distdir mostlyclean-depend distclean-depend clean-depend \
|
||||
maintainer-clean-depend info dvi installcheck install-exec install-data \
|
||||
install uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
clean-generic maintainer-clean-generic clean mostlyclean distclean \
|
||||
maintainer-clean
|
||||
|
||||
|
|
|
|||
5
plug-ins/fp/.cvsignore
Normal file
5
plug-ins/fp/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
fp
|
||||
5
plug-ins/fuse/.cvsignore
Normal file
5
plug-ins/fuse/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
fuse
|
||||
5
plug-ins/gag-0.3/.cvsignore
Normal file
5
plug-ins/gag-0.3/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gag-0.3
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -118,9 +121,9 @@ default: all
|
|||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gag-0.3/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gag-0.3/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -158,6 +161,11 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/gag-0.3
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gag-0.3/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|
|
|
|||
5
plug-ins/gauss_iir/.cvsignore
Normal file
5
plug-ins/gauss_iir/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gauss_iir
|
||||
5
plug-ins/gauss_rle/.cvsignore
Normal file
5
plug-ins/gauss_rle/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gauss_rle
|
||||
5
plug-ins/gbr/.cvsignore
Normal file
5
plug-ins/gbr/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gbr
|
||||
5
plug-ins/gfig/.cvsignore
Normal file
5
plug-ins/gfig/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gfig
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -135,6 +138,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|||
|
||||
TAR = tar
|
||||
GZIP = --best
|
||||
DEP_FILES = .deps/gfig.P
|
||||
SOURCES = $(gfig_SOURCES)
|
||||
OBJECTS = $(gfig_OBJECTS)
|
||||
|
||||
|
|
@ -143,9 +147,9 @@ default: all
|
|||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gfig/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gfig/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -230,12 +234,43 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/gfig
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gfig/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file; \
|
||||
done
|
||||
|
||||
MKDEP = $(CC) -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
-include .deps/.P
|
||||
.deps/.P: $(BUILT_SOURCES)
|
||||
echo > $@
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
mostlyclean-depend:
|
||||
|
||||
clean-depend:
|
||||
|
||||
distclean-depend:
|
||||
|
||||
maintainer-clean-depend:
|
||||
-rm -rf .deps
|
||||
|
||||
.deps/%.P: %.c
|
||||
@echo "Computing dependencies for $<..."
|
||||
@o='o'; \
|
||||
test -n "$o" && o='$$o'; \
|
||||
$(MKDEP) $< >$@.tmp \
|
||||
&& sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," < $@.tmp > $@ \
|
||||
&& rm -f $@.tmp
|
||||
info:
|
||||
dvi:
|
||||
check: all
|
||||
|
|
@ -275,22 +310,22 @@ maintainer-clean-generic:
|
|||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
mostlyclean: mostlyclean-pluginlibPROGRAMS mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-tags \
|
||||
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
|
||||
mostlyclean-generic
|
||||
|
||||
clean: clean-pluginlibPROGRAMS clean-compile clean-libtool clean-tags \
|
||||
clean-generic mostlyclean
|
||||
clean-depend clean-generic mostlyclean
|
||||
|
||||
distclean: distclean-pluginlibPROGRAMS distclean-compile \
|
||||
distclean-libtool distclean-tags distclean-generic \
|
||||
clean
|
||||
distclean-libtool distclean-tags distclean-depend \
|
||||
distclean-generic clean
|
||||
-rm -f config.status
|
||||
-rm -f libtool
|
||||
|
||||
maintainer-clean: maintainer-clean-pluginlibPROGRAMS \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-generic \
|
||||
distclean
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
|
|
@ -301,8 +336,9 @@ install-pluginlibPROGRAMS mostlyclean-compile distclean-compile \
|
|||
clean-compile maintainer-clean-compile mostlyclean-libtool \
|
||||
distclean-libtool clean-libtool maintainer-clean-libtool tags \
|
||||
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
||||
distdir info dvi installcheck install-exec install-data install \
|
||||
uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
distdir mostlyclean-depend distclean-depend clean-depend \
|
||||
maintainer-clean-depend info dvi installcheck install-exec install-data \
|
||||
install uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
clean-generic maintainer-clean-generic clean mostlyclean distclean \
|
||||
maintainer-clean
|
||||
|
||||
|
|
|
|||
5
plug-ins/gflare/.cvsignore
Normal file
5
plug-ins/gflare/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gflare
|
||||
5
plug-ins/gfli/.cvsignore
Normal file
5
plug-ins/gfli/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gfli
|
||||
5
plug-ins/gicon/.cvsignore
Normal file
5
plug-ins/gicon/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gicon
|
||||
5
plug-ins/gif/.cvsignore
Normal file
5
plug-ins/gif/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gif
|
||||
5
plug-ins/gimptcl/.cvsignore
Normal file
5
plug-ins/gimptcl/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gimptcl
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -150,7 +153,7 @@ default: all
|
|||
.SUFFIXES:
|
||||
.SUFFIXES: .c .h .lo .o
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gimptcl/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimptcl/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) \
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -106,9 +109,9 @@ default: all
|
|||
.SUFFIXES:
|
||||
.SUFFIXES: .tcl
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/gimptcl/scripts/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimptcl/scripts/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -140,6 +143,11 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/gimptcl/scripts
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/gimptcl/scripts/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|
|
|
|||
5
plug-ins/gqbist/.cvsignore
Normal file
5
plug-ins/gqbist/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gqbist
|
||||
5
plug-ins/gradmap/.cvsignore
Normal file
5
plug-ins/gradmap/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gradmap
|
||||
5
plug-ins/grid/.cvsignore
Normal file
5
plug-ins/grid/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
grid
|
||||
5
plug-ins/gz/.cvsignore
Normal file
5
plug-ins/gz/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
gz
|
||||
5
plug-ins/header/.cvsignore
Normal file
5
plug-ins/header/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
header
|
||||
5
plug-ins/holes/.cvsignore
Normal file
5
plug-ins/holes/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
holes
|
||||
5
plug-ins/hot/.cvsignore
Normal file
5
plug-ins/hot/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
hot
|
||||
5
plug-ins/hrz/.cvsignore
Normal file
5
plug-ins/hrz/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
hrz
|
||||
5
plug-ins/ifscompose/.cvsignore
Normal file
5
plug-ins/ifscompose/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
ifscompose
|
||||
5
plug-ins/iwarp/.cvsignore
Normal file
5
plug-ins/iwarp/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
iwarp
|
||||
5
plug-ins/jpeg/.cvsignore
Normal file
5
plug-ins/jpeg/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
jpeg
|
||||
5
plug-ins/laplace/.cvsignore
Normal file
5
plug-ins/laplace/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
laplace
|
||||
5
plug-ins/libgck/.cvsignore
Normal file
5
plug-ins/libgck/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
libgck
|
||||
5
plug-ins/lic/.cvsignore
Normal file
5
plug-ins/lic/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
lic
|
||||
5
plug-ins/magiceye/.cvsignore
Normal file
5
plug-ins/magiceye/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
magiceye
|
||||
5
plug-ins/mail/.cvsignore
Normal file
5
plug-ins/mail/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
mail
|
||||
5
plug-ins/mathmap/.cvsignore
Normal file
5
plug-ins/mathmap/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
mathmap
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -118,9 +121,9 @@ default: all
|
|||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/mathmap/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/mathmap/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -158,6 +161,11 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/mathmap
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/mathmap/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|
|
|
|||
5
plug-ins/max_rgb/.cvsignore
Normal file
5
plug-ins/max_rgb/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
max_rgb
|
||||
5
plug-ins/maze/.cvsignore
Normal file
5
plug-ins/maze/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
maze
|
||||
5
plug-ins/mblur/.cvsignore
Normal file
5
plug-ins/mblur/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
mblur
|
||||
5
plug-ins/megawidget/.cvsignore
Normal file
5
plug-ins/megawidget/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
megawidget
|
||||
5
plug-ins/mosaic/.cvsignore
Normal file
5
plug-ins/mosaic/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
mosaic
|
||||
5
plug-ins/mpeg/.cvsignore
Normal file
5
plug-ins/mpeg/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
mpeg
|
||||
|
|
@ -16,7 +16,7 @@ SHELL = /bin/sh
|
|||
|
||||
srcdir = .
|
||||
top_srcdir = ../..
|
||||
prefix = /usr/local
|
||||
prefix = /usr
|
||||
exec_prefix = ${prefix}
|
||||
|
||||
bindir = ${exec_prefix}/bin
|
||||
|
|
@ -57,25 +57,28 @@ PRE_UNINSTALL = true
|
|||
POST_UNINSTALL = true
|
||||
host_alias = i486-pc-linux-gnu
|
||||
host_triplet = i486-pc-linux-gnu
|
||||
CC = /usr/bin/gcc
|
||||
CC = gcc
|
||||
CPP = gcc -E
|
||||
EMACS = /usr/bin/emacs
|
||||
GIMPTCL = gimptcl
|
||||
JPEG = jpeg
|
||||
LD = /usr/lib/gcc-lib/i386-linux/egcs-2.90.18/ld
|
||||
LIBJPEG_LIB = -ljpeg
|
||||
LIBMPEG_LIB =
|
||||
LIBPNG_LIB = -lpng -lz
|
||||
LIBTCL_LIB = -ltcl -ltk
|
||||
LIBTIFF_LIB = -ltiff
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIBXDELTA_LIB =
|
||||
LIBXPM_LIB = -lXpm
|
||||
LN_S = ln -s
|
||||
MAINT = #M#
|
||||
MAKEINFO = makeinfo
|
||||
MPEG =
|
||||
NM = /usr/bin/nm -B
|
||||
PACKAGE = gimp
|
||||
PNG = png
|
||||
RANLIB = @RANLIB@
|
||||
RANLIB = ranlib
|
||||
TIFF = tiff
|
||||
VERSION = 0.99.15
|
||||
XD =
|
||||
|
|
@ -136,6 +139,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|||
|
||||
TAR = tar
|
||||
GZIP = --best
|
||||
DEP_FILES = .deps/mpeg.P
|
||||
SOURCES = $(mpeg_SOURCES)
|
||||
OBJECTS = $(mpeg_OBJECTS)
|
||||
|
||||
|
|
@ -144,9 +148,9 @@ default: all
|
|||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o
|
||||
$(srcdir)/Makefile.in: #M# Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps plug-ins/mpeg/Makefile
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/mpeg/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
|
@ -231,12 +235,43 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||
subdir = plug-ins/mpeg
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu plug-ins/mpeg/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file; \
|
||||
done
|
||||
|
||||
MKDEP = $(CC) -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
-include .deps/.P
|
||||
.deps/.P: $(BUILT_SOURCES)
|
||||
echo > $@
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
mostlyclean-depend:
|
||||
|
||||
clean-depend:
|
||||
|
||||
distclean-depend:
|
||||
|
||||
maintainer-clean-depend:
|
||||
-rm -rf .deps
|
||||
|
||||
.deps/%.P: %.c
|
||||
@echo "Computing dependencies for $<..."
|
||||
@o='o'; \
|
||||
test -n "$o" && o='$$o'; \
|
||||
$(MKDEP) $< >$@.tmp \
|
||||
&& sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," < $@.tmp > $@ \
|
||||
&& rm -f $@.tmp
|
||||
info:
|
||||
dvi:
|
||||
check: all
|
||||
|
|
@ -276,22 +311,22 @@ maintainer-clean-generic:
|
|||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
mostlyclean: mostlyclean-pluginlibPROGRAMS mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-tags \
|
||||
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
|
||||
mostlyclean-generic
|
||||
|
||||
clean: clean-pluginlibPROGRAMS clean-compile clean-libtool clean-tags \
|
||||
clean-generic mostlyclean
|
||||
clean-depend clean-generic mostlyclean
|
||||
|
||||
distclean: distclean-pluginlibPROGRAMS distclean-compile \
|
||||
distclean-libtool distclean-tags distclean-generic \
|
||||
clean
|
||||
distclean-libtool distclean-tags distclean-depend \
|
||||
distclean-generic clean
|
||||
-rm -f config.status
|
||||
-rm -f libtool
|
||||
|
||||
maintainer-clean: maintainer-clean-pluginlibPROGRAMS \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-generic \
|
||||
distclean
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
|
|
@ -302,8 +337,9 @@ install-pluginlibPROGRAMS mostlyclean-compile distclean-compile \
|
|||
clean-compile maintainer-clean-compile mostlyclean-libtool \
|
||||
distclean-libtool clean-libtool maintainer-clean-libtool tags \
|
||||
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
||||
distdir info dvi installcheck install-exec install-data install \
|
||||
uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
distdir mostlyclean-depend distclean-depend clean-depend \
|
||||
maintainer-clean-depend info dvi installcheck install-exec install-data \
|
||||
install uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||
clean-generic maintainer-clean-generic clean mostlyclean distclean \
|
||||
maintainer-clean
|
||||
|
||||
|
|
|
|||
5
plug-ins/nlfilt/.cvsignore
Normal file
5
plug-ins/nlfilt/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
nlfilt
|
||||
5
plug-ins/noisify/.cvsignore
Normal file
5
plug-ins/noisify/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
noisify
|
||||
5
plug-ins/normalize/.cvsignore
Normal file
5
plug-ins/normalize/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
_libs
|
||||
normalize
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue