Commit 12dd25c5 authored by Grand Francois's avatar Grand Francois
Browse files

- MAJ du readme

- suppression Makefile
Showing with 0 additions and 39 deletions
+0 -39
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)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment