Fix bugs in sizing TableLayoutPanel (Xamarin bug 18638)
[mono.git] / mcs / nunit24 / NUnitFramework / framework / Makefile
1 thisdir = nunit24/NUnit.Framework/framework
2 SUBDIRS = 
3 include ../../../build/rules.make
4
5 LIBRARY = NUnit.Framework.dll
6 LIBRARY_NAME = nunit.framework.dll
7 LIBRARY_SNK = $(topdir)/nunit24/nunit.snk
8
9 LIB_MCS_FLAGS = /r:System.Xml.dll /r:System.dll /d:StronglyNamedAssembly -warn:1
10 NO_TEST = yo
11
12 ifneq (net_2_0, $(PROFILE))
13 NO_INSTALL = yes
14 install-local: install-symlink
15 uninstall-local: uninstall-symlink
16 endif
17
18 EXTRA_DISTFILES = \
19         nunit.framework.dll.csproj \
20         nunit.framework.dll_VS2005.csproj
21
22 include ../../../build/library.make
23
24 symlinkdir = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
25 install-symlink:
26         $(MKINSTALLDIRS) $(DESTDIR)$(symlinkdir)
27         cd $(DESTDIR)$(symlinkdir) && rm -f $(LIBRARY_NAME) && ln -s ../2.0/$(LIBRARY_NAME) $(LIBRARY_NAME)
28
29 uninstall-symlink:
30         rm -f $(DESTDIR)$(symlinkdir)/$(LIBRARY_NAME)