14 lines
254 B
Makefile
14 lines
254 B
Makefile
MAKEFLAGS += --no-print-directory
|
|
|
|
.ONESHELL:
|
|
SHELL = /usr/bin/bash
|
|
.SILENT:
|
|
|
|
localhelp:
|
|
echo "Possible unittest options are:"
|
|
echo " - status - Prints a table for the status of each unittest"
|
|
|
|
status:
|
|
__scripts__/unittest_status
|
|
|