Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xcap-capability-linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xcap
xcap-capability-linux
Commits
378dbb2c
Commit
378dbb2c
authored
13 years ago
by
Arnaud Lacombe
Browse files
Options
Downloads
Patches
Plain Diff
kconfig: migrate parser to implicit rules
Signed-off-by:
Arnaud Lacombe
<
lacombar@gmail.com
>
parent
674eed8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scripts/kconfig/.gitignore
+1
-1
1 addition, 1 deletion
scripts/kconfig/.gitignore
scripts/kconfig/Makefile
+3
-25
3 additions, 25 deletions
scripts/kconfig/Makefile
scripts/kconfig/zconf.y
+1
-1
1 addition, 1 deletion
scripts/kconfig/zconf.y
with
5 additions
and
27 deletions
scripts/kconfig/.gitignore
+
1
−
1
View file @
378dbb2c
...
...
@@ -2,7 +2,7 @@
# Generated files
#
config*
lex.
*.
c
*.
lex.c
*.tab.c
*.tab.h
zconf.hash.c
...
...
This diff is collapsed.
Click to expand it.
scripts/kconfig/Makefile
+
3
−
25
View file @
378dbb2c
...
...
@@ -223,6 +223,9 @@ HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC)
HOSTCFLAGS_lex.zconf.o
:=
-I
$(
src
)
HOSTCFLAGS_zconf.tab.o
:=
-I
$(
src
)
LEX_PREFIX_zconf
:=
zconf
YACC_PREFIX_zconf
:=
zconf
HOSTLOADLIBES_qconf
=
$(
KC_QT_LIBS
)
-ldl
HOSTCXXFLAGS_qconf.o
=
$(
KC_QT_CFLAGS
)
-D
LKC_DIRECT_LINK
...
...
@@ -335,28 +338,3 @@ $(obj)/gconf.glade.h: $(obj)/gconf.glade
$(
Q
)
intltool-extract
--type
=
gettext/glade
--srcdir
=
$(
srctree
)
\
$(
obj
)
/gconf.glade
###
# The following requires flex/bison/gperf
# By default we use the _shipped versions, uncomment the following line if
# you are modifying the flex/bison src.
# LKC_GENPARSER := 1
ifdef
LKC_GENPARSER
$(obj)/zconf.tab.c
:
$(src)/zconf.y
$(obj)/lex.zconf.c
:
$(src)/zconf.l
$(obj)/zconf.hash.c
:
$(src)/zconf.gperf
%.tab.c
:
%.y
bison
-l
-b
$*
-p
$(
notdir
$*
)
$<
cp
$@
$@
_shipped
lex.%.c
:
%.l
flex
-L
-P
$(
notdir
$*
)
-o
$@
$<
cp
$@
$@
_shipped
%.hash.c
:
%.gperf
gperf
-C
<
$<
>
$@
cp
$@
$@
_shipped
endif
This diff is collapsed.
Click to expand it.
scripts/kconfig/zconf.y
+
1
−
1
View file @
378dbb2c
...
...
@@ -733,7 +733,7 @@ void zconfdump(FILE *out)
}
}
#include "
lex.
zconf.c"
#include "zconf.
lex.
c"
#include "util.c"
#include "confdata.c"
#include "expr.c"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment