summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-19 14:10:51 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-19 14:10:51 +0200
commit8f899beb4cf40821399d55c648787b487423c93a (patch)
treeb51adbc6f3a60dfde333e8c8ba805b68816b2a1e /Makefile
parent10df69131f70c63a94247edf38f40ba5a31ae54e (diff)
downloadwallet-core-8f899beb4cf40821399d55c648787b487423c93a.tar.gz
wallet-core-8f899beb4cf40821399d55c648787b487423c93a.tar.bz2
wallet-core-8f899beb4cf40821399d55c648787b487423c93a.zip
tweak build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 8 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index efb3e7cb0..92b3f72a1 100644
--- a/Makefile
+++ b/Makefile
@@ -11,21 +11,17 @@ tslint = node_modules/tslint/bin/tslint
-include config.mk
-.PHONY: package-stable
-package-stable: i18n
- $(gulp) stable
-
-.PHONY: package-unstable
-package-unstable: i18n
- $(gulp) unstable
-
.PHONY: tsc
tsc: tsconfig.json yarn-install
$(tsc)
-.PHONY: yarn-install
-yarn-install:
- yarn install
+.PHONY: webex-stable
+webex-stable: i18n
+ $(gulp) stable
+
+.PHONY: webex-unstable
+webex-unstable: i18n
+ $(gulp) unstable
tsconfig.json: gulpfile.js yarn-install
$(gulp) tsconfig
@@ -41,7 +37,7 @@ typedoc:
.PHONY: clean
clean:
- rm -rf dist/
+ rm -rf dist/ config.mk
.PHONY: check
check: tsc yarn-install
@@ -83,4 +79,3 @@ install:
npm install -g --prefix $(prefix) .
endif
-