Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
efef36c0
Commit
efef36c0
authored
Oct 14, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Generate explicit build rules for lex files from makedep.
parent
66a55932
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Make.rules.in
Make.rules.in
+1
-4
makedep.c
tools/makedep.c
+2
-0
No files found.
Make.rules.in
View file @
efef36c0
...
...
@@ -36,7 +36,7 @@ CROSSOBJS = $(OBJS:.o=.cross.o)
# Implicit rules
.SUFFIXES: .mc .rc .res .idl .tlb .h .y .
l .tab.c .tab.h .yy.c
.ok .man.in .man _c.c _i.c _p.c _s.c _r.res _t.res .cross.o .po .mo @MAINTAINER_MODE@ .sfd .ttf .svg .ico .bmp
.SUFFIXES: .mc .rc .res .idl .tlb .h .y .
tab.c .tab.h
.ok .man.in .man _c.c _i.c _p.c _s.c _r.res _t.res .cross.o .po .mo @MAINTAINER_MODE@ .sfd .ttf .svg .ico .bmp
.c.o:
$(CC) -c $(ALLCFLAGS) -o $@ $<
...
...
@@ -53,9 +53,6 @@ CROSSOBJS = $(OBJS:.o=.cross.o)
.y.tab.h:
$(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<
.l.yy.c:
$(FLEX) $(LEXFLAGS) -o$@ $<
.mc.res:
$(WMC) -U -O res $(PORCFLAGS) -o $@ $<
...
...
tools/makedep.c
View file @
efef36c0
...
...
@@ -947,6 +947,8 @@ static void output_sources(void)
}
else
if
(
!
strcmp
(
ext
,
"l"
))
/* lex file */
{
output
(
"%s.yy.c: %s
\n
"
,
obj
,
source
->
filename
);
output
(
"
\t
$(FLEX) $(LEXFLAGS) -o$@ %s
\n
"
,
source
->
filename
);
column
+=
output
(
"%s.yy.o: %s.yy.c"
,
obj
,
obj
);
}
else
if
(
!
strcmp
(
ext
,
"rc"
))
/* resource file */
...
...
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