-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#262] Versioned docker container and added top level Makefile
- Loading branch information
Showing
7 changed files
with
63 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# CryptoLib Makefile | ||
# | ||
|
||
# The "LOCALTGTS" defines the top-level targets that are implemented in this makefile | ||
# Any other target may also be given, in that case it will simply be passed through. | ||
LOCALTGTS := all clean debug internal kmc wolf | ||
OTHERTGTS := $(filter-out $(LOCALTGTS),$(MAKECMDGOALS)) | ||
|
||
# As this makefile does not build any real files, treat everything as a PHONY target | ||
# This ensures that the rule gets executed even if a file by that name does exist | ||
.PHONY: $(LOCALTGTS) $(OTHERTGTS) | ||
|
||
# | ||
# Commands | ||
# | ||
all: | ||
$(MAKE) internal | ||
$(MAKE) kmc | ||
$(MAKE) wolf | ||
|
||
clean: | ||
rm -rf ./build | ||
|
||
debug: | ||
./support/scripts/docker_debug.sh | ||
|
||
internal: | ||
./support/scripts/internal_docker_build.sh | ||
|
||
kmc: | ||
./support/scripts/kmc_docker_build.sh | ||
|
||
wolf: | ||
./support/scripts/wolf_docker_build.sh |
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
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
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
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
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
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