TARGET = JustePort.exe

SOURCES = \
./AssemblyInfo.cs \
./RTSPClient.cs \
./RAOPClient.cs \
./JustePort.cs \
./Utility.cs \
./MP4.cs

all: $(TARGET)

$(TARGET): $(SOURCES)
	mcs -target:exe -out:$(TARGET) $(SOURCES)

clean:
	rm -f $(TARGET)
