2002-08-05 Patrik Torstensson <ptorsten@hotmail.com>
[mono.git] / mcs / class / makefile.gnu
1 INSTALL = /usr/bin/install
2 prefix = /usr
3
4 DIRS =  corlib                          \
5         System                          \
6         System.XML                      \
7         System.Drawing                  \
8         System.Data                     \
9         System.EnterpriseServices       \
10         System.Web                      \
11         System.Web.Services             \
12         System.Configuration.Install
13
14 #       Microsoft.VisualBasic           \
15
16 default: all
17
18 all clean:
19         @for i in $(DIRS) ; do \
20                 (cd $$i && $(MAKE) -f makefile.gnu $@) || exit 1; \
21         done
22
23 install: all
24         mkdir -p $(prefix)/lib/
25         $(INSTALL) -m 644 lib/*.dll $(prefix)/lib/
26