-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Building in gcc:7 docker container, updated instructions. Could have …
…typos
- Loading branch information
1 parent
28108d7
commit a291670
Showing
5 changed files
with
103 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[submodule "cpputest"] | ||
path = cpputest | ||
url = https://github.com/cpputest/cpputest.git | ||
ignore = dirty |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
# Prerequisites: | ||
# CppUTest built with extensions | ||
# CPPUTEST_HOME defined | ||
export CPPUTEST_HOME = $(PWD)/cpputest | ||
|
||
all: | ||
all: cpputest | ||
@echo CPPUTEST_HOME is $(CPPUTEST_HOME) | ||
make -i -C code | ||
make -i -C code-t0 | ||
make -i -C code-t1 | ||
make -i -C code-t2 | ||
make -i -C code-t3 | ||
|
||
clean: | ||
make -i -C cpputest clean | ||
make -i -C code clean | ||
make -i -C code-t0 clean | ||
make -i -C code-t1 clean | ||
make -i -C code-t2 clean | ||
make -i -C code-t3 clean | ||
|
||
.PHONY: cpputest | ||
cpputest: cpputest/lib/libCppUTest.a | ||
|
||
cpputest/lib/libCppUTest.a: | ||
cd cpputest; autoreconf . -i && ./configure && make tdd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters