aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2018-05-31 10:06:42 +0200
committerEnrico Tassi2018-05-31 10:06:42 +0200
commit57b47c3f390d85f0e69ecbf48947f495fafaff30 (patch)
tree29aa38add45d219ce855083ba899883d72adda7b
parent0e54e2f1ea103b8ba05f4b8bc3ab460dd8eb4393 (diff)
parentbbc0922ad3c1206ed545c94579821d9b616f6cf1 (diff)
Merge PR #7639: Makefile: fix undefined NATIVEFILES when -native-compute no
-rw-r--r--Makefile.vofiles2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.vofiles b/Makefile.vofiles
index b1e97e9918..d0ae317335 100644
--- a/Makefile.vofiles
+++ b/Makefile.vofiles
@@ -32,6 +32,8 @@ vo_to_obj = $(foreach vo,$(1),$(dir $(vo)).coq-native/$(subst /,_,$(patsubst the
GLOBFILES:=$(ALLVO:.vo=.glob)
ifdef NATIVECOMPUTE
NATIVEFILES := $(call vo_to_cm,$(ALLVO)) $(call vo_to_obj,$(ALLVO))
+else
+NATIVEFILES :=
endif
LIBFILES:=$(ALLVO) $(NATIVEFILES) $(VFILES) $(GLOBFILES)