Skip to content
Snippets Groups Projects
Commit eda46b38 authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

[Makefile] New crowbar target for linking the whole kernel

More or less needed if you want to use dynamically loaded plug-ins, for which
dependency tracking becomes more complicated.
parent ccc4d395
No related branches found
No related tags found
No related merge requests found
...@@ -1438,6 +1438,10 @@ tests/crowbar/%: tests/crowbar/%.ml tests/crowbar/.%.depend .depend \ ...@@ -1438,6 +1438,10 @@ tests/crowbar/%: tests/crowbar/%.ml tests/crowbar/.%.depend .depend \
-deps tests/crowbar/.$*.depend -deps .depend) \ -deps tests/crowbar/.$*.depend -deps .depend) \
$< $<
tests/crowbar/full-link-%: tests/crowbar/%.ml lib/fc/frama-c.cmxa
$(OCAMLOPT) $(OLINKFLAGS) -ccopt "-Llib/fc" -w -42 -package crowbar -o $@ \
lib/fc/frama-c.cmxa $<
crowbar-%: tests/crowbar/% crowbar-%: tests/crowbar/%
$< $<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment