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 28 29 30 31
|
# $Id: Makefile 2156 2008-01-25 13:25:12Z schimans $
# Makefile for quant
# The targets to be tested. Use .FILE.test-passed as target, if
# FILE.tac has to be tested. Use DIR/.TEST as target if a subdir has
# to be tested
all: .TEST
.TEST: .dc-first.test-passed
touch .TEST
# The relative path to the toplevel Minlog-Dir
TOP= ../../
# clean has to be implemented at each level. Always have genericclean as a
# dependency
clean: genericclean
#
# Now include the standard rules for testing:
#
include ../Makefile.template
## How it works:
## entry point is always the target .TEST
## Then for every file we have to produce the file .FILE.test-passed
|