blob: fcbebd3d4cdf60a8ba9ad4aa1dc6936d99ed9545 (
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 && $(MAKE) $(AM_MAKEFLAGS) $@
logfile:
cd xts5 && $(MAKE) logfile
|