11 lines
175 B
Makefile
11 lines
175 B
Makefile
.ONESHELL:
|
|
SHELL = /usr/bin/bash
|
|
MAKEFLAGS += --no-print-directory
|
|
.SILENT:
|
|
|
|
test:
|
|
:
|
|
%.log_1st: %.py
|
|
echo -e "\e[1m * Running slow example $<\e[0m"
|
|
$(INTERPRETER) $< > $@
|