Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Williams <peterw@mono-cvs.ximian.com>2003-07-20 23:12:32 +0400
committerPeter Williams <peterw@mono-cvs.ximian.com>2003-07-20 23:12:32 +0400
commitce1416a11a989c8a80d0bfa1caa165a8d38c4c45 (patch)
tree1afaf6f5c69a1dbc1efc226d66b9c4c50f8faa0d /mcs/build/library.make
parent0b607733bdb3edfe1a6d52445a60355e92037b60 (diff)
2003-07-20 Peter Williams <peter@newton.cx>
* library.make ($(response)): Do a "Creating ..." line here. * executable.make ($(response)): Same. * config-default.make: Make warning more forceful. * rules.make: Define a useful 'PLATFORM_MONO_NATIVE' that is set if the platform does not have a native runtime (ie, linux). Also reorder some definitions. 2003-07-20 Peter Williams <peter@newton.cx> * Created. See ../ChangeLog for entries earlier than this. svn path=/trunk/mcs/; revision=16453
Diffstat (limited to 'mcs/build/library.make')
-rw-r--r--mcs/build/library.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/build/library.make b/mcs/build/library.make
index db0c6825ee3..c1fd6436c5c 100644
--- a/mcs/build/library.make
+++ b/mcs/build/library.make
@@ -87,7 +87,8 @@ $(makefrag): $(sourcefile)
ifdef PLATFORM_CHANGE_SEPARATOR_CMD
$(response): $(sourcefile)
- cat $< |$(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
+ @echo Creating $@ ...
+ @cat $< |$(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
endif
-include $(makefrag)