make_progs: Generate the .gitignore file.
Ignore generated programs from the top-level .gitignore.
This commit is contained in:
parent
5258e061dc
commit
028ab92bf7
|
@ -1,3 +1,40 @@
|
|||
# Automatically generated by make_dlls; DO NOT EDIT!!
|
||||
/Makeprog.rules
|
||||
/wineapploader
|
||||
/winelauncher
|
||||
clock/clock
|
||||
cmdlgtst/cmdlgtst
|
||||
control/control
|
||||
eject/eject
|
||||
expand/expand
|
||||
explorer/explorer
|
||||
hh/hh
|
||||
icinfo/icinfo
|
||||
iexplore/iexplore
|
||||
msiexec/msiexec
|
||||
notepad/notepad
|
||||
oleview/oleview
|
||||
progman/progman
|
||||
regedit/regedit
|
||||
regsvr32/regsvr32
|
||||
rpcss/rpcss
|
||||
rundll32/rundll32
|
||||
start/start
|
||||
taskmgr/taskmgr
|
||||
uninstaller/uninstaller
|
||||
view/view
|
||||
wcmd/wcmd
|
||||
wineboot/wineboot
|
||||
winebrowser/winebrowser
|
||||
winecfg/winecfg
|
||||
wineconsole/wineconsole
|
||||
winedbg/winedbg
|
||||
winefile/winefile
|
||||
winemenubuilder/winemenubuilder
|
||||
winemine/winemine
|
||||
winepath/winepath
|
||||
winetest/winetest
|
||||
winevdm/winevdm
|
||||
winhelp/winhelp
|
||||
winver/winver
|
||||
wordpad/wordpad
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/clock
|
||||
/rsrc.res
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
/about.ico
|
||||
/cmdlgr.res
|
||||
/cmdlgtst
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/control
|
|
@ -1 +0,0 @@
|
|||
/eject
|
|
@ -1 +0,0 @@
|
|||
/expand
|
|
@ -1 +0,0 @@
|
|||
/explorer
|
|
@ -1 +0,0 @@
|
|||
/hh
|
|
@ -1 +0,0 @@
|
|||
/icinfo
|
|
@ -1 +0,0 @@
|
|||
/iexplore
|
|
@ -187,3 +187,27 @@ EOF
|
|||
close NEWMAKE;
|
||||
rename "Makefile.in.new", "Makefile.in";
|
||||
printf "Successfully updated Makefile.in\n";
|
||||
|
||||
################################################################
|
||||
# .gitignore file
|
||||
|
||||
open GITIGNORE, ">.gitignore.new" or die "cannot create .gitignore.new";
|
||||
print GITIGNORE "# Automatically generated by make_dlls; DO NOT EDIT!!\n";
|
||||
|
||||
my @ignores =
|
||||
(
|
||||
"/Makeprog.rules",
|
||||
"/wineapploader",
|
||||
"/winelauncher",
|
||||
);
|
||||
|
||||
foreach my $dir (sort keys %alldirs)
|
||||
{
|
||||
push @ignores, "$dir/$dir";
|
||||
}
|
||||
|
||||
print GITIGNORE join("\n", sort @ignores) . "\n";
|
||||
|
||||
close GITIGNORE;
|
||||
rename ".gitignore.new", ".gitignore";
|
||||
printf "Successfully updated .gitignore\n";
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
/msiexec
|
||||
/msiexec.ico
|
||||
/rsrc.res
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/notepad
|
||||
/rsrc.res
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
/oleview
|
||||
/rsrc.res
|
||||
/toolbar.bmp
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/progman
|
||||
/rsrc.res
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
/computer.ico
|
||||
/folder.ico
|
||||
/folderopen.ico
|
||||
/regedit
|
||||
/regedit.ico
|
||||
/rsrc.res
|
||||
/string.ico
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/regsvr32
|
||||
/regsvr32.res
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/rpcss
|
|
@ -1 +0,0 @@
|
|||
/rundll32
|
|
@ -1,2 +1 @@
|
|||
/rsrc.res
|
||||
/start
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
/font.bmp
|
||||
/taskmgr
|
||||
/taskmgr.ico
|
||||
/taskmgr.res
|
||||
/trayicon.bmp
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
/rsrc.res
|
||||
/uninstaller
|
||||
/uninstaller.ico
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/view
|
||||
/viewrc.res
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
/wcmd
|
||||
/wcmd.ico
|
||||
/wcmdrc.res
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/wineboot
|
|
@ -1 +0,0 @@
|
|||
/winebrowser
|
|
@ -1,4 +1,3 @@
|
|||
/idb_checkbox.bmp
|
||||
/idb_wine.bmp
|
||||
/winecfg
|
||||
/winecfg.res
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
/wineconsole
|
||||
/wineconsole_res.res
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
/dbg.tab.c
|
||||
/dbg.tab.h
|
||||
/lex.yy.c
|
||||
/winedbg
|
||||
/winedbg.man
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
/images.bmp
|
||||
/rsrc.res
|
||||
/toolbar.bmp
|
||||
/winefile
|
||||
/winefile.ico
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/winemenubuilder
|
|
@ -2,5 +2,4 @@
|
|||
/leds.bmp
|
||||
/mines.bmp
|
||||
/rsrc.res
|
||||
/winemine
|
||||
/winemine.ico
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/winepath
|
|
@ -1,5 +1,4 @@
|
|||
/dist.res
|
||||
/tests.rc
|
||||
/wine.ico
|
||||
/winetest
|
||||
/winetest.res
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/winevdm
|
|
@ -1,3 +1,2 @@
|
|||
/lex.yy.c
|
||||
/rsrc.res
|
||||
/winhelp
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/winver
|
|
@ -1,3 +1,2 @@
|
|||
/rsrc.res
|
||||
/toolbar.bmp
|
||||
/wordpad
|
||||
|
|
Loading…
Reference in New Issue