* Makefile ($(dir $(PROGRAM))/.stamp): New.
[mono.git] / mcs / tools / compiler-tester / Makefile
1 thisdir = tools/compiler-tester
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 PROGRAM = $(topdir)/class/lib/$(PROFILE)/compiler-tester.exe
6 NO_INSTALL = yes
7
8 ifeq (net_2_1, $(PROFILE))
9
10 all-local: $(PROGRAM)
11 clean-local:
12         rm -f $(PROGRAM)
13
14 $(dir $(PROGRAM))/.stamp:
15         mkdir -p $(@D)
16         touch $@
17
18 $(PROGRAM): $(dir $(PROGRAM))/.stamp
19 $(PROGRAM): $(topdir)/class/lib/net_2_1_raw/compiler-tester.exe
20         cp $< $@
21
22 dist-local: dist-default
23 install-local uninstall-local test-local run-test-local run-test-ondotnet-local: ; @:
24
25 else
26
27 include $(topdir)/build/executable.make
28
29 endif