Added:
trunk/release/masterinfos/ChangeLog
Modified:
trunk/release/masterinfos/Makefile
Log:
* Makefile: Use WINDIR environment variable instead of hardcoding
path to Windows. No longer build mono-api-diff since it's not
used.
Added: trunk/release/masterinfos/ChangeLog
===================================================================
--- trunk/release/masterinfos/ChangeLog 2007-06-30 00:27:06 UTC (rev 81092)
+++ trunk/release/masterinfos/ChangeLog 2007-06-30 06:51:26 UTC (rev 81093)
@@ -0,0 +1,5 @@
+2007-06-30 Gert Driesen <drie...@users.sourceforge.net>
+
+ * Makefile: Use WINDIR environment variable instead of hardcoding
+ path to Windows. No longer build mono-api-diff since it's not
+ used.
Property changes on: trunk/release/masterinfos/ChangeLog
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: trunk/release/masterinfos/Makefile
===================================================================
--- trunk/release/masterinfos/Makefile 2007-06-30 00:27:06 UTC (rev 81092)
+++ trunk/release/masterinfos/Makefile 2007-06-30 06:51:26 UTC (rev 81093)
@@ -1,27 +1,19 @@
-CSC=g:/windows/microsoft.net/framework/v1.1.4322/csc.exe $(CSCOPTIONS)
-CSC2=g:/windows/microsoft.net/framework/v2.0.50727/csc.exe $(CSCOPTIONS) \
+CSC=$(WINDIR)/microsoft.net/framework/v1.1.4322/csc.exe $(CSCOPTIONS)
+CSC2=$(WINDIR)/microsoft.net/framework/v2.0.50727/csc.exe $(CSCOPTIONS) \
-define:NET_2_0
CSCOPTIONS=-nologo -nowarn:0618
RUNTIME=
-all: mono-api-info mono-api-diff
+all: mono-api-info
-mono-api-diff: mono-api-diff.exe mono-api-diff2.exe
-
mono-api-info: mono-api-info.exe mono-api-info2.exe
mono-api-info.exe: mono-api-info.cs
$(CSC) -out:$@ $<
-mono-api-diff.exe: mono-api-diff.cs
- $(CSC) -out:$@ $<
-
mono-api-info2.exe: mono-api-info.cs
$(CSC2) -out:$@ $<
-mono-api-diff2.exe: mono-api-diff.cs
- $(CSC2) -out:$@ $<
-
infos: infos1 infos2
infos1: mono-api-info.exe assemblies-list.txt createinfos.sh
@@ -31,5 +23,5 @@
./createinfos.sh 2.0 assemblies-list-2.txt
clean:
- rm -f *.pdb *.mdb mono-api-info*.exe mono-api-diff*.exe *~
+ rm -f *.pdb *.mdb mono-api-info*.exe *~