Skip to content

Commit 547fb2f

Browse files
committed
refactor(src): move yices into vendor subdir
Signed-off-by: Austin Seipp <[email protected]>
1 parent 628906d commit 547fb2f

File tree

13 files changed

+9
-9
lines changed

13 files changed

+9
-9
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "src/yices/v2.6/yices2"]
2-
path = src/yices/v2.6/yices2
1+
[submodule "src/vendor/yices/v2.6/yices2"]
2+
path = src/vendor/yices/v2.6/yices2
33
url = https://github.com/SRI-CSL/yices2

src/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ all: install
88

99
.PHONY: install clean full_clean
1010
install clean full_clean:
11-
$(MAKE) -C stp PREFIX=$(PREFIX) $@
12-
$(MAKE) -C yices PREFIX=$(PREFIX) $@
13-
$(MAKE) -C vendor/htcl PREFIX=$(PREFIX) $@
11+
$(MAKE) -C stp PREFIX=$(PREFIX) $@
12+
$(MAKE) -C vendor/yices PREFIX=$(PREFIX) $@
13+
$(MAKE) -C vendor/htcl PREFIX=$(PREFIX) $@
1414
# we need to build targets from here sequentially, as they operate in the same workspace
1515
$(MAKE) -C comp -j1 PREFIX=$(PREFIX) $@
1616
$(MAKE) -C Libraries PREFIX=$(PREFIX) $@

src/comp/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ STP_ARGS = -I../stp/include -L../stp/lib
6262
STP_LIBS = -lstp
6363

6464
# Yices
65-
YICES_HS = ../yices/include_hs
66-
YICES_ARGS = -I../yices/include -L../yices/lib
65+
YICES_HS = ../vendor/yices/include_hs
66+
YICES_ARGS = -I../vendor/yices/include -L../vendor/yices/lib
6767
YICES_LIBS = -lyices
6868

6969
# Libs which are only needed to build bsc/bluetcl
File renamed without changes.

src/yices/Makefile renamed to src/vendor/yices/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TOP:=../..
1+
TOP:=../../..
22

33
PREFIX?=$(TOP)/inst
44

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)