From a9cd40738c21a1b7ccc50e8870beb17c97176ca1 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 29 May 2017 00:06:52 +0430 Subject: make install now also adds reliquary which is only useful for dev purposes --- makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index 1c10d0e..575d7de 100644 --- a/makefile +++ b/makefile @@ -67,6 +67,9 @@ install: chmod +x ./extra-tools/ReportPrintPretty.sh chmod +x ./extra-tools/precommitTests.sh if [[ ! -d "./temp" ]]; then mkdir temp; fi + if [[ ! -d "./reliquary" ]]; then mkdir reliquary; fi + if [[ ! -d "./reliquary/m0" ]]; then mkdir ./reliquary/m0; fi + if [[ ! -d "./reliquary/bruiser" ]]; then mkdir ./reliquary/bruiser; fi $(shell echo MUTATOR_HOME=$$(pwd) > ./daemon/mutator.config) help: -- cgit v1.2.3 From 32d6139a25e4621da2dac10daee21bbe8c49f695 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 29 May 2017 20:11:00 +0430 Subject: added the reliquary dorectories --- makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'makefile') diff --git a/makefile b/makefile index 575d7de..d91b38f 100644 --- a/makefile +++ b/makefile @@ -70,6 +70,7 @@ install: if [[ ! -d "./reliquary" ]]; then mkdir reliquary; fi if [[ ! -d "./reliquary/m0" ]]; then mkdir ./reliquary/m0; fi if [[ ! -d "./reliquary/bruiser" ]]; then mkdir ./reliquary/bruiser; fi + if [[ ! -d "./reliquary/safercpp" ]]; then mkdir ./reliquary/safercpp; fi $(shell echo MUTATOR_HOME=$$(pwd) > ./daemon/mutator.config) help: -- cgit v1.2.3 From b8b487fd37228c97c8c4de0e18c056fd22659c0e Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Thu, 1 Jun 2017 03:13:23 +0430 Subject: make install makes oracle executable, updated a comment --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index d91b38f..1ca05c0 100644 --- a/makefile +++ b/makefile @@ -66,6 +66,7 @@ install: chmod +x ./mutator.sh chmod +x ./extra-tools/ReportPrintPretty.sh chmod +x ./extra-tools/precommitTests.sh + chmod +x ./extra-tools/oracle.sh if [[ ! -d "./temp" ]]; then mkdir temp; fi if [[ ! -d "./reliquary" ]]; then mkdir reliquary; fi if [[ ! -d "./reliquary/m0" ]]; then mkdir ./reliquary/m0; fi @@ -76,7 +77,7 @@ install: help: @echo '- There is help.' @echo '- All is the default.' - @echo '- install makes the scripts executable. Currently this is all it does.' + @echo '- install makes the scripts executable. Also creates the reliquary.' @echo '- Clean.' @echo '- TAGS will run ctags on the C/C++ source files.' @echo '- You can use the target names as build targets to just build one executable.' -- cgit v1.2.3