Skip to content

Commit de64a40

Browse files
authored
Remove references to k-frontend Makefile target (#2398)
* Remove references to k-frontend Makefile target * scripts/deps.sh: Remove reference to k-frontend target * scripts/integration-k.sh: Remove reference to k-frontend target
1 parent acc9463 commit de64a40

File tree

4 files changed

+3
-28
lines changed

4 files changed

+3
-28
lines changed

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include include.mk
22

3-
.PHONY: all clean docs haddock jenkins k-frontend \
3+
.PHONY: all clean docs haddock \
44
test test-kore test-k \
55
kore-exec kore-repl
66

@@ -12,8 +12,6 @@ kore-repl: $(KORE_REPL)
1212

1313
kore-parser: $(KORE_PARSER)
1414

15-
k-frontend: $(K)
16-
1715
docs: haddock
1816

1917
haddock:
@@ -32,7 +30,7 @@ haddock:
3230
haskell_documentation: haddock
3331
cp -r $$($(STACK_HADDOCK) path --local-doc-root) haskell_documentation
3432

35-
all: kore k-frontend
33+
all: kore
3634

3735
test: test-kore test-k
3836

scripts/build.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

scripts/deps.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
set -exuo pipefail
44

5-
export TOP=${TOP:-$(git rev-parse --show-toplevel)}
6-
export PATH="$(stack path --local-bin)${PATH:+:$PATH}"
7-
8-
MAKE="make -O -j --directory $TOP"
9-
105
# Dockerfile caches only snapshot dependencies.
116
# Make non-snapshot dependencies available early.
127
stack build --only-dependencies --test --no-run-tests --bench --no-run-benchmarks
13-
14-
$MAKE k-frontend

scripts/integration-k.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ else
2121
MAKE="make -j ${JOBS:?} -C $TOP"
2222
fi
2323

24-
$MAKE kore k-frontend
24+
$MAKE kore
2525
$MAKE test-k

0 commit comments

Comments
 (0)