blob: 603e79fee36da1d387a50ff0d5903f1e5b40ecd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Makefile
#
# Makefile for regress directory of Veil
#
# Copyright (c) 2005 - 2011 Marc Munro
# Author: Marc Munro
# License: BSD
#
# Do not attempt to use this makefile explicitly: its targets are available
# and should be built from the main GNUmakefile in the parent directory.
#
.PHONY: regress check
REGRESS_DIR = regress
REGRESS_CLEAN = $(garbage:%=$(REGRESS_DIR)/%)
# Run regression test
regress check: all
@cd $(REGRESS_DIR) 2>/dev/null; \
./regress.sh
clean: regress_clean
regress_clean:
@cd $(REGRESS_DIR) 2>/dev/null; ./regress.sh -d
|