We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6823e0c commit 2ed120fCopy full SHA for 2ed120f
Makefile
@@ -2,20 +2,20 @@
2
DUCTTAPE:=$(shell dirname $(realpath $(lastword ${MAKEFILE_LIST})))
3
SBT:=sbt
4
5
-SRC_FILES=$(shell find src -type f)
+SRC_FILES=$(shell find src builtins -type f)
6
7
compile: ${SRC_FILES}
8
${SBT} compile
9
10
-dist: ${SRC_FILES}
+dist: ${SRC_FILES} logging.properties build.sbt
11
${SBT} assembly
12
bash ${DUCTTAPE}/build-support/dist.sh
13
14
doc:
15
${SBT} doc
16
${DUCTTAPE}/build-support/doc.sh ${DUCTTAPE}/dist/ducttape-current
17
18
-test-unit: ${SRC_FILES}
+test-unit: ${SRC_FILES} logging.properties build.sbt
19
${SBT} test
20
21
# Run regression tests using the distribution version
0 commit comments