Skip to content

Commit

Permalink
restore make -C share/steel
Browse files Browse the repository at this point in the history
  • Loading branch information
tahina-pro committed Feb 8, 2024
1 parent 7692a58 commit fd0bf87
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion share/steel/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGETS=examples tests tutorial
TARGETS=examples

all: $(TARGETS)

Expand Down
6 changes: 3 additions & 3 deletions share/steel/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ifeq (,$(PULSE_HOME))
$(error PULSE_HOME should be defined in the enclosing Makefile as the prefix directory where Steel was installed, or the root directory of its source repository)
$(error PULSE_HOME should be defined in the enclosing Makefile as the prefix directory where Pulse was installed, or the root directory of its source repository)
endif

ifneq (,$(FSTAR_HOME))
Expand All @@ -8,7 +8,7 @@ else
FSTAR=fstar.exe
endif

# Add Steel to the OCaml (ocamlfind) search path
# Add Pulse to the OCaml (ocamlfind) search path
ifeq ($(OS),Windows_NT)
OCAMLPATH := $(shell cygpath -m $(PULSE_HOME)/lib);$(OCAMLPATH)
else
Expand Down Expand Up @@ -37,7 +37,7 @@ export OCAMLPATH

FSTAR_FILES += $(filter-out $(EXCLUDE_FILES),$(wildcard *.fst *.fsti))
ADDITIONAL_INCLUDES ?=
FSTAR_OPTIONS += $(OTHERFLAGS) --cmi --cache_checked_modules --warn_error @241 --already_cached 'Prims,FStar,LowStar,Steel,C' --include $(PULSE_HOME)/lib/steel $(ADDITIONAL_INCLUDES) --load_cmxs steel
FSTAR_OPTIONS += $(OTHERFLAGS) --cmi --cache_checked_modules --warn_error @241 --already_cached 'Prims,FStar,LowStar,C' --include $(PULSE_HOME)/lib/steel $(ADDITIONAL_INCLUDES) --load_cmxs steel

COMPAT_INDEXED_EFFECTS?=--compat_pre_typed_indexed_effects

Expand Down
2 changes: 1 addition & 1 deletion share/steel/examples/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGETS=steel pulse steelc
TARGETS=pulse

all: $(TARGETS)

Expand Down
2 changes: 1 addition & 1 deletion share/steel/examples/pulse/Makefile.pulse.common
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ WARN_ERROR=

SMT_OPTIONS?=
OTHERFLAGS+=$(WARN_ERROR) $(SMT_OPTIONS)
ALREADY_CACHED_LIST ?= Prims,FStar,Steel,Pulse,-Pulse.Lib,-Pulse.C,-Pulse.Class
ALREADY_CACHED_LIST ?= Prims,FStar,Pulse,-Pulse.Lib,-Pulse.C,-Pulse.Class
ALREADY_CACHED = --already_cached $(ALREADY_CACHED_LIST)

# A place to put all build artifacts
Expand Down

0 comments on commit fd0bf87

Please sign in to comment.