Add Mono.PEToolkit to the build
[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         Mono.PEToolkit                  \
18         Microsoft.VisualBasic
19
20 default: all
21
22 all clean:
23         @for i in $(DIRS) ; do \
24                 if [ -d "$$i" ] && [ -f "$$i/makefile.gnu" ] ; then     \
25                         (cd $$i && $(MAKE) -f makefile.gnu $@) || exit 1; \
26                 fi      \
27         done
28
29 install: all
30         mkdir -p $(prefix)/lib/
31         $(INSTALL) -m 644 lib/*.dll $(prefix)/lib/
32
33 test: all
34         @for i in $(DIRS) ; do \
35                 if [ -d "$$i" ] && [ -f "$$i/makefile.gnu" ] ; then     \
36                         (cd $$i && $(MAKE) -f makefile.gnu $@) || exit 1; \
37                 fi      \
38         done
39