2002-08-15 Tim Coleman <tim@timcoleman.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.Runtime.Serialization.Formatters.Soap \
13         System.Configuration.Install
14
15 #       Microsoft.VisualBasic           \
16
17 default: all
18
19 all clean:
20         @for i in $(DIRS) ; do \
21                 if [ -d "$$i" ] && [ -f "$$i/makefile.gnu" ] ; then     \
22                         (cd $$i && $(MAKE) -f makefile.gnu $@) || exit 1; \
23                 fi      \
24         done
25
26 install: all
27         mkdir -p $(prefix)/lib/
28         $(INSTALL) -m 644 lib/*.dll $(prefix)/lib/
29