Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
38daf97a
Commit
38daf97a
authored
Jul 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_dlls: Generate the .gitignore file.
parent
cc2b3b48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
.gitignore
dlls/.gitignore
+1
-0
make_dlls
dlls/make_dlls
+28
-0
No files found.
dlls/.gitignore
View file @
38daf97a
# Automatically generated by make_dlls; DO NOT EDIT!!
/Makedll.rules
/Makeimplib.rules
/Maketest.rules
...
...
dlls/make_dlls
View file @
38daf97a
...
...
@@ -351,3 +351,31 @@ 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
=
(
"/Makedll.rules"
,
"/Makeimplib.rules"
,
"/Maketest.rules"
,
);
foreach
my
$mod
(
sort
@lib_symlinks
)
{
push
@ignores
,
"/$importlibs{$mod}.def"
;
}
foreach
my
$mod
(
sort
keys
%
directories
)
{
next
unless
defined
$altnames
{
$mod
};
push
@ignores
,
map
{
"/"
.
$_
.
"16"
;
}
@
{
$altnames
{
$mod
}};
}
print
GITIGNORE
join
(
"\n"
,
sort
@ignores
)
.
"\n"
;
close
GITIGNORE
;
rename
".gitignore.new"
,
".gitignore"
;
printf
"Successfully updated .gitignore\n"
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment