-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updating CTP and DicomAnonymizer submodules to use forks * Added new commits from the CTP and DicomAnonymizerTool submodules * One more try * Deleting build artifacts * Cleaned up tools repo * Cleaned up tools repo * Resolving conflicts --------- Co-authored-by: smitalimaye <[email protected]>
- Loading branch information
1 parent
2c51840
commit eaffcd9
Showing
5 changed files
with
35 additions
and
1 deletion.
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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
TARGET = install | ||
VERSION = 1.0.0 | ||
|
||
.PHONY: clean | ||
|
||
all: clean install docker | ||
|
||
docker: | ||
docker build -f Dockerfile --pull -t starr-radio:$(VERSION) . | ||
|
||
install: | ||
git submodule update --init --recursive | ||
git submodule update --remote --merge | ||
cd CTP | ||
git fetch | ||
cd .. | ||
cd DicomAnonymizerTool | ||
git fetch | ||
cd .. | ||
$(MAKE) -C CTP | ||
ant | ||
|
||
check: | ||
$(MAKE) -C tests check | ||
|
||
all: clean install | ||
|
||
|
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