monotouch uses the real HttpWebRequest
[mcs.git] / class / Mono.Options / Makefile
blob64fbefa18f8cfc69b69df928c262f4bac2fd36b1
1 thisdir = class/Mono.Options
2 SUBDIRS =
3 include ../../build/rules.make
5 LIBRARY = Mono.Options.dll
6 LIBRARY_PACKAGE = none
8 NO_INSTALL = yes
10 LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll
11 TEST_MCS_FLAGS = /r:Mono.Posix.dll /r:System.dll
13 mono_sourcelibs_DIR = $(DESTDIR)$(mono_libdir)/mono-source-libs
14 mono_options_DATA = Mono.Options/Options.cs
16 include ../../build/library.make
18 install-local: install-source
20 uninstall-local: uninstall-source
22 install-source:
23 -$(MKINSTALLDIRS) $(mono_sourcelibs_DIR)
24 $(INSTALL) -m 644 $(mono_options_DATA) $(mono_sourcelibs_DIR)
26 uninstall-source:
27 -rm -f $(mono_options_DIR)/Options.cs
29 fixup-docs:
30 for f in `find Documentation/en -name \*.xml` ; do \
31 sed -i 's/NDesk.Options/Mono.Options/g' $$f ; \
32 done