blob: a4e0f62dad2ebe4606a03411cb63595dbd577aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
SBT ?= sbt
SBT_FLAGS ?= -Dsbt.log.noformat=true
RM_DIRS := test-outputs test-reports
#CLEAN_DIRS := doc
SRC_DIR ?= .
SYSTEMC ?= $(SRC_DIR)/../../systemc/systemc-2.3.1
CHISEL_JAR ?= $(SRC_DIR)/target/scala-2.11/chisel_2.11-3.0-SNAPSHOT.jar
DRIVER ?= $(SRC_DIR)/src/test/resources/AddFilterSysCdriver.cpp
TEST_OUTPUT_DIR ?= ./test-outputs
.PHONY: smoke publish-local check clean jenkins-build sysctest coverage scaladoc test
default: publish-local
smoke:
$(SBT) $(SBT_FLAGS) compile
publish-local:
$(SBT) $(SBT_FLAGS) publish-local
check test:
$(SBT) $(SBT_FLAGS) test
coverage:
$(SBT) $(SBT_FLAGS) coverage test
$(SBT) $(SBT_FLAGS) coverageReport
clean:
$(SBT) $(SBT_FLAGS) +clean
ifneq (,$(CLEAN_DIRS))
for dir in $(CLEAN_DIRS); do $(MAKE) -C $$dir clean; done
endif
ifneq (,$(RM_DIRS))
$(RM) -r $(RM_DIRS)
endif
scaladoc:
$(SBT) $(SBT_FLAGS) doc test:doc
# Start off clean, then run tests for all supported configurations, and publish those versions of the code.
# Then run coverage and style tests (for developer's use).
# Don't publish the coverage test code since it contains hooks/references to the coverage test package
# and we don't want code with those dependencies published.
# We need to run the coverage tests last, since Jenkins will fail the build if it can't find their results.
jenkins-build: clean
$(SBT) $(SBT_FLAGS) +test
$(SBT) $(SBT_FLAGS) +clean +publish-local
$(SBT) $(SBT_FLAGS) scalastyle coverage test
$(SBT) $(SBT_FLAGS) coverageReport
sysctest:
mkdir -p $(TEST_OUTPUT_DIR)
$(MAKE) -C $(TEST_OUTPUT_DIR) -f ../Makefile SRC_DIR=.. syscbuildandruntest
syscbuildandruntest: AddFilter
./AddFilter
AddFilter: AddFilter.h AddFilter.cpp $(SYSC_DRIVER)
$(CXX) AddFilter.cpp $(DRIVER) \
-I. -I$(SYSTEMC)/include -L$(SYSTEMC)/lib-macosx64 -lsystemc -o $@
AddFilter.cpp AddFilter.h: AddFilter.class
scala -cp $(CHISEL_JAR):. AddFilter --targetDir . --genHarness --backend sysc --design AddFilter
AddFilter.class: $(CHISEL_JAR) ../src/test/scala/AddFilter.scala
scalac -cp $(CHISEL_JAR) ../src/test/scala/AddFilter.scala
|