Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 981259a664c92bf5a2e5d5fc587460e123bdb0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DIRS=jay nant mcs class nunit tools

all: linux

windows:
	for i in $(DIRS); do 			\
		(cd $$i; make linux)		\
	done

linux:
	for i in $(DIRS); do 			\
		(cd $$i; make linux) || exit 1;	\
	done

test:
	(cd nunit; make)
	(cd class; make test)

clean:
	for i in $(DIRS); do 			\
		(cd $$i; make clean)		\
	done