source: src/Tests/Parser/Makefile@ db82596

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since db82596 was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 372 bytes
Line 
1CFA = ../../cfa-cpp
2
3EXPECTED = ${wildcard Expected/*.tst}
4TESTS = $(EXPECTED:Expected/%=%)
5TEST_IN = $(TESTS:.tst=.c)
6DIFF = diff
7
8%.tst:%.c $(CFA)
9 $(CFA) -nt < $< > $@ 2>&1
10
11report: $(CFA) $(TESTS) $(EXPECTED)
12 rm -f report
13 @for i in $(TESTS); do \
14 echo "---$$i---" | tee -a report; \
15 $(DIFF) -B -w Expected/$$i $$i | tee -a report; \
16 done
17
18clean:
19 rm -f *.tst
Note: See TracBrowser for help on using the repository browser.