blob: 4532c7eb3a7cd74df80e93f700a9a80f1503f616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SUBDIRS = src xts5
# Helper target to force generation of tetexec.cfg
.PHONY: tetexec.cfg
tetexec.cfg:
@rm -f xts5/$@
@cd xts5 && $(MAKE) $(AM_MAKEFLAGS) $@
# Helper target for testing subsets
test-%:
@cd xts5/tset && $(MAKE) $(AM_MAKEFLAGS) $@
logfile:
cd xts5 && $(MAKE) logfile
|