12 lines
134 B
Makefile
12 lines
134 B
Makefile
![]() |
TESTS= assignment.test \
|
||
|
comment.test \
|
||
|
printf.test
|
||
|
|
||
|
%.test: %.t
|
||
|
@./picotest.sh $<
|
||
|
|
||
|
all: test
|
||
|
|
||
|
test: $(TESTS)
|
||
|
@echo "test passed"
|