From 12dd25c5a97a35f068e917321a7b268f16973d9b Mon Sep 17 00:00:00 2001 From: "francois.grand" <francois.grand@irstea.fr> Date: Tue, 27 Jun 2017 18:20:50 +0200 Subject: [PATCH] - MAJ du readme - suppression Makefile --- Makefile | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index cc5e7d2a..00000000 --- a/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -SRC_DIR := src -BUILD_DIR := build -NODE_BASE := $(HOME)/Documents/dev/node-v6.10.2-linux-x64 -NODE := $(NODE_BASE)/bin/node - -JASMINE_CLI := ./node_modules/jasmine-node/lib/jasmine-node/cli.js - -#$(error $(NODE)) - -SOURCE_FILES := $(shell find $(SRC_DIR) -name *.ts) - -all : compile - -compile : build-dir $(SOURCE_FILES) - npm run build - -build-dir : - mkdir -p $(BUILD_DIR) - -buildspec : - npm run buildspec - -jasmine : buildspec cls - npm run jasmine - -jasmine2 : - make clean;make buildspec;./node_modules/.bin/jasmine --config=spec/support/jasmine-RUcirc.json - -testjs : - make; node build/src/test.js - -karma : buildspec - npm run karma - -cls : - printf "\033c" - -clean : - rm -rf $(BUILD_DIR) -- GitLab