
CSC = mcs
CAIRO = -r:Mono.Cairo.dll
SWF = -r:System.Windows.Forms.dll

all: arc.exe

arc.exe: arc.cs
	$(CSC) $(CAIRO) $(SWF) arc.cs

