Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Fix make for Mono 4.x installs as gmcs is being called #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ populate.exe: populate.cs
dmcs populate.cs -r:../src/MonoMac.dll -r:System.Xml.Linq

docfixer.exe: $(MACCORE)/docfixer.cs $(MACCORE)/docfixer.mm.cs AgilityPack.dll
gmcs -out:$@ -debug+ $(MACCORE)/docfixer.cs $(MACCORE)/docfixer.mm.cs -r:AgilityPack.dll -r:../src/MonoMac.dll -r:System.Xml.Linq -r:System.Xml
mcs -out:$@ -debug+ $(MACCORE)/docfixer.cs $(MACCORE)/docfixer.mm.cs -r:AgilityPack.dll -r:../src/MonoMac.dll -r:System.Xml.Linq -r:System.Xml

dgc: document-generated-code

Expand Down
6 changes: 3 additions & 3 deletions samples/MicroSamples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ MonoMac.dll: $(MONOMAC_DLL)
cp "$<" $@

generate-pdf.exe: MonoMac.dll generate-pdf.cs
gmcs generate-pdf.cs -r:MonoMac.dll -r:System.Drawing
mcs generate-pdf.cs -r:MonoMac.dll -r:System.Drawing

locator.exe: MonoMac.dll locator.cs
gmcs locator.cs -r:MonoMac.dll
mcs locator.cs -r:MonoMac.dll

HelloCoreWlanSample.exe: MonoMac.dll HelloCoreWlanSample.cs
gmcs HelloCoreWlanSample.cs -r:MonoMac.dll
mcs HelloCoreWlanSample.cs -r:MonoMac.dll
2 changes: 1 addition & 1 deletion samples/attic/Hello/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all:
cp ../../../src/MonoMac.dll* Hello.app/Contents/Resources/
gmcs -debug -main:Demo hello.cs -out:Hello.app/Contents/Resources/Hello.exe -r:System.Drawing -r:Hello.app/Contents/Resources/MonoMac.dll
mcs -debug -main:Demo hello.cs -out:Hello.app/Contents/Resources/Hello.exe -r:System.Drawing -r:Hello.app/Contents/Resources/MonoMac.dll

run:
./Hello.app/Contents/MacOS/Hello