more tcp channel code, renamed soap namespace to Soap
[mono.git] / mcs / class / makefile.gnu
1 INSTALL = /usr/bin/install
2 prefix = /usr
3
4 DIRS =  corlib                          \
5         I18N                            \
6         System                          \
7         System.XML                      \
8         System.Drawing                  \
9         System.Data                     \
10         System.EnterpriseServices       \
11         System.Web                      \
12         System.Web.Services             \
13         System.Runtime.Remoting         \
14         System.Runtime.Serialization.Formatters.Soap \
15         System.Configuration.Install \
16         Mono.CSharp.Debugger            \
17         Microsoft.VisualBasic
18
19 default: all
20
21 all clean:
22         @for i in $(DIRS) ; do \
23                 if [ -d "$$i" ] && [ -f "$$i/makefile.gnu" ] ; then     \
24                         (cd $$i && $(MAKE) -f makefile.gnu $@) || exit 1; \
25                 fi      \
26         done
27
28 install: all
29         mkdir -p $(prefix)/lib/
30         $(INSTALL) -m 644 lib/*.dll $(prefix)/lib/
31