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-02-24 07:38:04 +0300
committerPeter Williams <peterw@mono-cvs.ximian.com>2003-02-24 07:38:04 +0300
commitf4ad42ac18b7c5d11badd3bf0692427ad33aa169 (patch)
treef30d7207b3364221777ddccc6ead616b50d236a5 /mcs/class/Mono.PEToolkit
parent67ff9f4b283749569ac56f012853b77ca57ac561 (diff)
2003-02-23 Peter Williams <peterw@ximian.com>
* makefile.gnu (all): Take two. svn path=/trunk/mcs/; revision=11915
Diffstat (limited to 'mcs/class/Mono.PEToolkit')
-rw-r--r--mcs/class/Mono.PEToolkit/ChangeLog1
-rw-r--r--mcs/class/Mono.PEToolkit/makefile.gnu6
2 files changed, 5 insertions, 2 deletions
diff --git a/mcs/class/Mono.PEToolkit/ChangeLog b/mcs/class/Mono.PEToolkit/ChangeLog
index 285494e8c02..a1db2f59f91 100644
--- a/mcs/class/Mono.PEToolkit/ChangeLog
+++ b/mcs/class/Mono.PEToolkit/ChangeLog
@@ -2,6 +2,7 @@
* makefile.gnu (all): Give this dependencies
so that we don't rebuild every time.
+ (all): Take two.
2003-02-22 Jackson Harper <jackson@latitudegeo.com>
diff --git a/mcs/class/Mono.PEToolkit/makefile.gnu b/mcs/class/Mono.PEToolkit/makefile.gnu
index 2cd00878a78..0989f4a1a6c 100644
--- a/mcs/class/Mono.PEToolkit/makefile.gnu
+++ b/mcs/class/Mono.PEToolkit/makefile.gnu
@@ -56,10 +56,12 @@ SOURCES_EXCLUDE=
#include $(topdir)/class/library.make
-mddump.exe: all
+default: all mddump.exe
+
+mddump.exe: $(SOURCES_INCLUDE)
mcs /out:mddump.exe /unsafe $(SOURCES_INCLUDE)
-clean:
+full-clean: clean
rm -f mddump.exe
include $(topdir)/class/library.make