mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-22 03:30:46 +00:00
7a4237eb3c
bug 1: in some cases "--format" could not override "!to" bug 2: "cannot open output file" resulted in "success" exit code git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@340 4df02467-bbd4-4a76-a152-e7ce94205b78
37 lines
465 B
Makefile
37 lines
465 B
Makefile
|
|
.SILENT:
|
|
|
|
.PHONY: auto bugfixes cliargs cpus errors warnings
|
|
|
|
all: auto bugfixes cliargs cpus errors warnings
|
|
|
|
auto:
|
|
echo "Performing self-tests..."
|
|
echo
|
|
make -C auto
|
|
|
|
bugfixes:
|
|
echo "Testing bugfixes..."
|
|
echo
|
|
make -C bugfixes
|
|
|
|
cliargs:
|
|
echo "Testing cliargs..."
|
|
echo
|
|
make -C cliargs
|
|
|
|
cpus:
|
|
echo "Testing CPUs..."
|
|
echo
|
|
make -C cpus
|
|
|
|
errors:
|
|
echo "Testing errors..."
|
|
echo
|
|
make -C errors
|
|
|
|
warnings:
|
|
echo "Testing warnings..."
|
|
echo
|
|
make -C warnings
|