Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / build / rules.make
blobd1d2832be4df8cb35e793f000d2bfc86761bbdf1
1 # -*- makefile -*-
3 # This is the makefile fragment with default rules
4 # for building things in MCS
6 # To customize the build, you should edit config.make.
7 # If you need to edit this file, that's a bug; email
8 # peter@newton.cx about it.
10 empty :=
11 space := $(empty) $(empty)
13 # given $(thisdir), we compute the path to the top directory
15 # split_path = $(filter-out .,$(subst /,$(space),$(1)))
16 # make_path = ./$(subst $(space),/,$(1))
17 # dotdottify = $(patsubst %,..,$(1))
18 # topdir = $(call make_path,$(call dotdottify,$(call split_path,$(thisdir))))
19 topdir := ./$(subst $(space),/,$(patsubst %,..,$(filter-out .,$(subst /,$(space),$(thisdir)))))
21 VERSION = 0.93
23 Q=$(if $(V),,@)
24 # echo -e "\\t" does not work on some systems, so use 5 spaces
25 Q_MCS=$(if $(V),,@echo "MCS [$(PROFILE)] $(notdir $(@))";)
27 ifndef BUILD_TOOLS_PROFILE
28 BUILD_TOOLS_PROFILE = build
29 endif
31 USE_MCS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MCS_FLAGS) $(PLATFORM_MCS_FLAGS) $(PROFILE_MCS_FLAGS) $(MCS_FLAGS)
32 USE_MBAS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MBAS_FLAGS) $(PLATFORM_MBAS_FLAGS) $(PROFILE_MBAS_FLAGS) $(MBAS_FLAGS)
33 USE_CFLAGS = $(LOCAL_CFLAGS) $(CFLAGS) $(CPPFLAGS)
34 CSCOMPILE = $(Q_MCS) $(MCS) $(USE_MCS_FLAGS)
35 BASCOMPILE = $(MBAS) $(USE_MBAS_FLAGS)
36 CCOMPILE = $(CC) $(USE_CFLAGS)
37 BOOT_COMPILE = $(Q_MCS) $(BOOTSTRAP_MCS) $(USE_MCS_FLAGS)
38 INSTALL = $(SHELL) $(topdir)/../mono/install-sh
39 INSTALL_DATA = $(INSTALL) -c -m 644
40 INSTALL_BIN = $(INSTALL) -c -m 755
41 INSTALL_LIB = $(INSTALL_BIN)
42 MKINSTALLDIRS = $(SHELL) $(topdir)/mkinstalldirs
43 INTERNAL_MBAS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/mbas/mbas.exe
44 INTERNAL_GMCS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/mcs.exe
45 INTERNAL_ILASM = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/ilasm.exe
46 corlib = mscorlib.dll
48 INTERNAL_RESGEN = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/resgen.exe
49 RESGEN = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN)
51 depsdir = $(topdir)/build/deps
53 # Make sure these propagate if set manually
55 export PLATFORM
56 export PROFILE
57 export MCS
58 export MCS_FLAGS
59 export CC
60 export CFLAGS
61 export INSTALL
62 export MKINSTALLDIRS
63 export TEST_HARNESS
64 export BOOTSTRAP_MCS
65 export DESTDIR
66 export RESGEN
68 # Get this so the platform.make platform-check rule doesn't become the
69 # default target
71 .DEFAULT: all
72 default: all
74 # Get initial configuration. pre-config is so that the builder can
75 # override PLATFORM or PROFILE
77 include $(topdir)/build/config-default.make
78 -include $(topdir)/build/pre-config.make
80 # Default PLATFORM and PROFILE if they're not already defined.
82 ifndef PLATFORM
83 ifeq ($(OS),Windows_NT)
84 PLATFORM = win32
85 else
86 PLATFORM = linux
87 endif
88 endif
90 # Platform config
92 include $(topdir)/build/platforms/$(PLATFORM).make
94 ifdef PLATFORM_CORLIB
95 corlib = $(PLATFORM_CORLIB)
96 endif
97 # Useful
99 ifeq ($(PLATFORM_RUNTIME),$(RUNTIME))
100 PLATFORM_MONO_NATIVE = yes
101 endif
103 # Rest of the configuration
105 ifndef PROFILE
106 PROFILE = $(DEFAULT_PROFILE)
107 endif
109 include $(topdir)/build/profiles/$(PROFILE).make
110 -include $(topdir)/build/config.make
112 ifdef BCL_OPTIMIZE
113 PROFILE_MCS_FLAGS += -optimize
114 endif
116 ifdef OVERRIDE_TARGET_ALL
117 all: all.override
118 else
119 all: do-all
120 endif
122 ifdef NO_INSTALL
123 GACUTIL = :
124 else
125 gacutil = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/gacutil.exe
126 GACUTIL = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(gacutil)
127 endif
129 STD_TARGETS = test run-test run-test-ondotnet clean install uninstall doc-update
131 $(STD_TARGETS): %: do-%
133 do-run-test:
134 ok=:; $(MAKE) run-test-recursive || ok=false; $(MAKE) run-test-local || ok=false; $$ok
136 do-%: %-recursive
137 $(MAKE) $*-local
139 .PHONY: all-local $(STD_TARGETS:=-local)
140 all-local $(STD_TARGETS:=-local):
142 csproj: do-csproj
144 # The way this is set up, any profile-specific subdirs list should
145 # be listed _before_ including rules.make. However, the default
146 # SUBDIRS list can come after, so don't use the eager := syntax when
147 # using the defaults.
148 PROFILE_SUBDIRS := $($(PROFILE)_SUBDIRS)
149 ifndef PROFILE_SUBDIRS
150 PROFILE_SUBDIRS = $(SUBDIRS)
151 endif
153 ifndef FRAMEWORK_VERSION_MAJOR
154 FRAMEWORK_VERSION_MAJOR = $(basename $(FRAMEWORK_VERSION))
155 endif
157 %-recursive:
158 @set . $$MAKEFLAGS; final_exit=:; \
159 case $$2 in --unix) shift ;; esac; \
160 case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
161 list='$(PROFILE_SUBDIRS)'; for d in $$list ; do \
162 (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
163 done; \
164 $$final_exit
166 ifndef DIST_SUBDIRS
167 DIST_SUBDIRS = $(SUBDIRS) $(DIST_ONLY_SUBDIRS)
168 endif
169 dist-recursive: dist-local
170 @case '$(distdir)' in [\\/$$]* | ?:[\\/]* ) reldir='$(distdir)' ;; *) reldir='../$(distdir)' ;; esac ; \
171 list='$(DIST_SUBDIRS)'; for d in $$list ; do \
172 (cd $$d && $(MAKE) distdir=$$reldir/$$d $@) || exit 1 ; \
173 done
175 # The following target can be used like
177 # dist-local: dist-default
178 # ... additional commands ...
180 # Notes:
181 # 1. we invert the test here to not end in an error if ChangeLog doesn't exist.
182 # 2. we error out if we try to dist a nonexistant file.
183 # 3. we pick up Makefile, makefile, or GNUmakefile.
184 dist-default:
185 -mkdir -p $(distdir)
186 test '!' -f ChangeLog || cp ChangeLog $(distdir)
187 if test -f Makefile; then m=M; fi; \
188 if test -f makefile; then m=m; fi; \
189 if test -f GNUmakefile; then m=GNUm; fi; \
190 for f in $${m}akefile $(DISTFILES) ; do \
191 dest=`dirname "$(distdir)/$$f"` ; \
192 $(MKINSTALLDIRS) $$dest && cp -p "$$f" $$dest || exit 1 ; \
193 done
194 if test -d Documentation ; then \
195 find . -name '*.xml' > .files ; \
196 tar cTf .files - | (cd $(distdir); tar xf -) ; \
197 rm .files ; \
200 %/.stamp:
201 $(MKINSTALLDIRS) $(@D)
202 touch $@
204 ## Documentation stuff
206 Q_MDOC =$(if $(V),,@echo "MDOC [$(PROFILE)] $(notdir $(@))";)
207 # net_2_0 is needed because monodoc is only compiled in that profile
208 MDOC =$(Q_MDOC) MONO_PATH="$(topdir)/class/lib/$(DEFAULT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$(topdir)/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/$(DEFAULT_PROFILE)/mdoc.exe