Ryujinx-GtkSharp/audit/makefile
Mike Kestner 24269861e8 update the audit base for the split and to the 2.8 API
svn path=/trunk/gtk-sharp/; revision=63221
2006-08-01 16:41:39 +00:00

25 lines
422 B
Makefile

MCS=mcs
all: extract-missing.exe mono-api-info.exe mono-api-diff.exe
check: all
rm -rf curr diff
./get-apiinfo.pl .. curr
./get-apidiff.pl base curr diff
./get-missing.pl diff
mono-api-diff.exe: mono-api-diff.cs
$(MCS) mono-api-diff.cs
mono-api-info.exe: mono-api-info.cs
$(MCS) mono-api-info.cs
extract-missing.exe: extract-missing.cs
$(MCS) extract-missing.cs
clean:
rm -f *.exe
rm -rf curr
rm -rf diff