Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Rodolphe Lepigre
Iris
Commits
6e7d84ad
Commit
6e7d84ad
authored
Mar 24, 2015
by
Ralf Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add target "make lib" to build only the library
parent
152ef2bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Makefile
Makefile
+6
-2
No files found.
Makefile
View file @
6e7d84ad
...
...
@@ -64,12 +64,14 @@ endif
# #
######################
VFILES
:=
$(
wildcard
*
.v
)
$(
wildcard
lib/ModuRes/
*
.v
)
LIBVFILES
:=
$(
wildcard
lib/
*
/
*
.v
)
VFILES
:=
$(
wildcard
*
.v
)
$(LIBVFILES)
-include
$(addsuffix .d,$(VFILES))
.SECONDARY
:
$(addsuffix .d
,
$(VFILES))
VOFILES
:=
$(VFILES:.v=.vo)
LIBVOFILES
:=
$(LIBVFILES:.v=.vo)
VOFILESINC
=
$(
filter
$(
wildcard
./
*
)
,
$(VOFILES)
)
GLOBFILES
:=
$(VFILES:.v=.glob)
VIFILES
:=
$(VFILES:.v=.vi)
...
...
@@ -90,6 +92,8 @@ endif
all
:
$(VOFILES)
lib
:
$(LIBVOFILES)
spec
:
$(VIFILES)
gallina
:
$(GFILES)
...
...
@@ -122,7 +126,7 @@ beautify: $(VFILES:=.beautified)
@
echo
'Do not do "make clean" until you are sure that everything went well!'
@
echo
'If there were a problem, execute "for file in $$(find . -name \*.v.old -print); do mv $
${file}
$
${file%.old}
; done" in your shell/'
.PHONY
:
all opt byte archclean clean install userinstall depend html validate
.PHONY
:
all
lib
opt byte archclean clean install userinstall depend html validate
####################
# #
...
...
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