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
|
/Makeprog.rules
|
||||||
/wineapploader
|
/wineapploader
|
||||||
/winelauncher
|
/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
|
/rsrc.res
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
/about.ico
|
/about.ico
|
||||||
/cmdlgr.res
|
/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;
|
close NEWMAKE;
|
||||||
rename "Makefile.in.new", "Makefile.in";
|
rename "Makefile.in.new", "Makefile.in";
|
||||||
printf "Successfully updated Makefile.in\n";
|
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
|
/msiexec.ico
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/notepad
|
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
/oleview
|
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/toolbar.bmp
|
/toolbar.bmp
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/progman
|
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
/computer.ico
|
/computer.ico
|
||||||
/folder.ico
|
/folder.ico
|
||||||
/folderopen.ico
|
/folderopen.ico
|
||||||
/regedit
|
|
||||||
/regedit.ico
|
/regedit.ico
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/string.ico
|
/string.ico
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/regsvr32
|
|
||||||
/regsvr32.res
|
/regsvr32.res
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/rpcss
|
|
|
@ -1 +0,0 @@
|
||||||
/rundll32
|
|
|
@ -1,2 +1 @@
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/start
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
/font.bmp
|
/font.bmp
|
||||||
/taskmgr
|
|
||||||
/taskmgr.ico
|
/taskmgr.ico
|
||||||
/taskmgr.res
|
/taskmgr.res
|
||||||
/trayicon.bmp
|
/trayicon.bmp
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/uninstaller
|
|
||||||
/uninstaller.ico
|
/uninstaller.ico
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/view
|
|
||||||
/viewrc.res
|
/viewrc.res
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
/wcmd
|
|
||||||
/wcmd.ico
|
/wcmd.ico
|
||||||
/wcmdrc.res
|
/wcmdrc.res
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/wineboot
|
|
|
@ -1 +0,0 @@
|
||||||
/winebrowser
|
|
|
@ -1,4 +1,3 @@
|
||||||
/idb_checkbox.bmp
|
/idb_checkbox.bmp
|
||||||
/idb_wine.bmp
|
/idb_wine.bmp
|
||||||
/winecfg
|
|
||||||
/winecfg.res
|
/winecfg.res
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/wineconsole
|
|
||||||
/wineconsole_res.res
|
/wineconsole_res.res
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
/dbg.tab.c
|
/dbg.tab.c
|
||||||
/dbg.tab.h
|
/dbg.tab.h
|
||||||
/lex.yy.c
|
/lex.yy.c
|
||||||
/winedbg
|
|
||||||
/winedbg.man
|
/winedbg.man
|
||||||
|
|
|
@ -2,5 +2,4 @@
|
||||||
/images.bmp
|
/images.bmp
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/toolbar.bmp
|
/toolbar.bmp
|
||||||
/winefile
|
|
||||||
/winefile.ico
|
/winefile.ico
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/winemenubuilder
|
|
|
@ -2,5 +2,4 @@
|
||||||
/leds.bmp
|
/leds.bmp
|
||||||
/mines.bmp
|
/mines.bmp
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/winemine
|
|
||||||
/winemine.ico
|
/winemine.ico
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/winepath
|
|
|
@ -1,5 +1,4 @@
|
||||||
/dist.res
|
/dist.res
|
||||||
/tests.rc
|
/tests.rc
|
||||||
/wine.ico
|
/wine.ico
|
||||||
/winetest
|
|
||||||
/winetest.res
|
/winetest.res
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/winevdm
|
|
|
@ -1,3 +1,2 @@
|
||||||
/lex.yy.c
|
/lex.yy.c
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/winhelp
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
/winver
|
|
|
@ -1,3 +1,2 @@
|
||||||
/rsrc.res
|
/rsrc.res
|
||||||
/toolbar.bmp
|
/toolbar.bmp
|
||||||
/wordpad
|
|
||||||
|
|
Loading…
Reference in New Issue