# Simple and ugly Makefile for SVNSyncTree # Adequate for building under mono on a Unix system. ##################################################### # # Path to Stuff. Modify as needed. ## MCS = /usr/bin/mcs BUILDDIR = bin/mono/ ######################################## # paws off beyond this line. ######################################## EXECS = SVNSyncTree-mono.exe all: $(EXECS) SVNSyncTree-mono.exe: main.cs Properties/AssemblyInfo.cs @echo "Building mono with $(MCS)" $(MCS) /out:bin/mono/SVNSyncTree-mono.exe /optimize+ main.cs Properties/AssemblyInfo.cs @echo "Copying default config file..." @cp App.config bin/mono/SVNSyncTree-mono.exe.config clean: -$(RM) bin/mono/SVNSyncTree-mono.exe bin/mono/SVNSyncTree-mono.exe.config