Skip to content
Snippets Groups Projects
Commit 46172e23 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[ptests] fix Makefile ifeq

parent cf644b57
No related branches found
No related tags found
No related merge requests found
...@@ -66,8 +66,12 @@ tests.info: ...@@ -66,8 +66,12 @@ tests.info:
########################################################################## ##########################################################################
## Command used to execute ptests (in order to generate dune test files) ## Command used to execute ptests (in order to generate dune test files)
# Note: the public name of ptests.exe is frama-c-ptests # Note:
ifeq ($(FRAMAC_PTESTS),"") # - in the Frama-C repository:
# ptests is in the project, so this variable is used to tell where is ptests.
# - in a plug-in:
# ptests is installed and its public name is frama-c-ptests
ifeq ($(FRAMAC_PTESTS),)
# PTESTS is external # PTESTS is external
PTESTS=frama-c-ptests PTESTS=frama-c-ptests
...@@ -92,8 +96,12 @@ ptests-help: ...@@ -92,8 +96,12 @@ ptests-help:
## Command used to execute wtests, the wrapper that can be used during ## Command used to execute wtests, the wrapper that can be used during
## dune testing (c.f. frama-c-ptests) ## dune testing (c.f. frama-c-ptests)
# Note: the public name of wtests.exe is frama-c-wtests # Note:
ifeq ($(FRAMAC_WTESTS),"") # - in the Frama-C repository:
# wtests is in the project, so this variable is used to tell where is wtests.
# - in a plug-in:
# wtests is installed and its public name is frama-c-wtests
ifeq ($(FRAMAC_WTESTS),)
# WTESTS is external to Frama-C # WTESTS is external to Frama-C
WTESTS=frama-c-wtests WTESTS=frama-c-wtests
......
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