• This project
    • Loading...
  • Sign in

박준혁 / os-17-2-termproject-jun

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • os-17-2-termproject-jun
  • node_modules
  • to-iso-string
  • Makefile
  • 박준혁's avatar
    얼굴 인식 JSON 파일 저장 및 읽기 · b061386d
    b061386d Browse Files
    박준혁 authored 2017-12-07 22:44:46 +0900
Makefile 275 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

build: components node_modules
	@component build --dev

clean:
	@rm -rf components build node_modules

components: component.json
	@component install --dev

node_modules: package.json
	@npm install

test: build
	@./node_modules/.bin/mocha --reporter spec

.PHONY: clean test