autogen .cvsignore

-Yosh
This commit is contained in:
Manish Singh 1999-09-04 06:19:46 +00:00
parent fb8c1d4db4
commit cd70fa440e
4 changed files with 37 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Fri Sep 3 23:17:44 PDT 1999 Manish Singh <yosh@gimp.org>
* plug-ins/common/mkgen.pl: autogen .cvsignore too
Sat Sep 4 05:39:39 MEST 1999 Sven Neumann <sven@gimp.org>
* app/devices.c: dnd for colors, more dnd to follow soon ...

View File

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

View File

@ -13,11 +13,11 @@ autocrop
autostretch_hsv
blinds
blur
borderaverage
bumpmap
bz2
c_astretch
checkerboard
color_enhance
colorify
compose
convmatrix
@ -41,12 +41,12 @@ fractaltrace
gauss_iir
gauss_rle
gbr
gpb
gee
gicon
gif
gifload
glasstile
gpb
gqbist
gradmap
grid
@ -114,6 +114,7 @@ url
video
vinvert
vpropagate
warp
waves
whirlpinch
wind

View File

@ -1,6 +1,16 @@
#!/usr/bin/perl -w
open MK, "> Makefile.am";
use lib '../../tools/pdbgen';
require 'util.pl';
*write_file = \&Gimp::CodeGen::util::write_file;
*FILE_EXT = \$Gimp::CodeGen::util::FILE_EXT;
$outmk = "Makefile.am$FILE_EXT";
$outignore = ".cvsignore$FILE_EXT";
open MK, "> $outmk";
open IGNORE, "> $outignore";
require 'plugin-defs.pl';
@ -59,6 +69,13 @@ install-\%: \%
else :; fi
EOT
print IGNORE <<EOT;
Makefile
Makefile.in
.deps
.libs
EOT
foreach (sort keys %plugins) {
my $libgimp = "";
@ -92,6 +109,12 @@ ${_}_LDADD = \\
\$(\U$plugins{$_}->{libdep}\E_LIBS) \\
\$(INTLLIBS)
EOT
print IGNORE "$_\n";
}
close MK;
close IGNORE;
&write_file($outmk);
&write_file($outignore);