24 lines
255 B
Makefile
24 lines
255 B
Makefile
SHELL:=/bin/bash
|
|
|
|
all: mnml
|
|
|
|
deps:
|
|
./bin/deps.sh
|
|
|
|
package:
|
|
./bin/package.sh
|
|
|
|
mnml:
|
|
./bin/build.sh
|
|
|
|
clean:
|
|
./bin/clean.sh
|
|
|
|
# test: test-unit test-integration
|
|
|
|
# test-unit:
|
|
# ./test/test-unit.sh
|
|
|
|
# test-integration:
|
|
# ./test/test-integration.sh
|