Skip to content

Commit 2ed120f

Browse files
committed
Update makefile
1 parent 6823e0c commit 2ed120f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
DUCTTAPE:=$(shell dirname $(realpath $(lastword ${MAKEFILE_LIST})))
33
SBT:=sbt
44

5-
SRC_FILES=$(shell find src -type f)
5+
SRC_FILES=$(shell find src builtins -type f)
66

77
compile: ${SRC_FILES}
88
${SBT} compile
99

10-
dist: ${SRC_FILES}
10+
dist: ${SRC_FILES} logging.properties build.sbt
1111
${SBT} assembly
1212
bash ${DUCTTAPE}/build-support/dist.sh
1313

1414
doc:
1515
${SBT} doc
1616
${DUCTTAPE}/build-support/doc.sh ${DUCTTAPE}/dist/ducttape-current
1717

18-
test-unit: ${SRC_FILES}
18+
test-unit: ${SRC_FILES} logging.properties build.sbt
1919
${SBT} test
2020

2121
# Run regression tests using the distribution version

0 commit comments

Comments
 (0)