mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 15:45:32 +00:00
d69268abbf
* configure.in : add mono check. expand wrapper scripts * generator/Makefile.in : use install. install a gapi-codegen wrapper. * generator/SymbolTable.cs : add SimpleGen for short * generator/gapi-codegen.in : new wrapper script in file. * parser/Makefile.in : use install. install a gapi-fixup wrapper. * generator/gapi-fixup.in : new wrapper script in file. * parser/gapi2xml.pl : deal with non-namespaced enums. ignore forward struct declarations. svn path=/trunk/gtk-sharp/; revision=19712
23 lines
386 B
Makefile
23 lines
386 B
Makefile
MCS=mcs
|
|
RUNTIME=mono
|
|
DESTDIR=
|
|
|
|
all: gapi_codegen.exe
|
|
|
|
clean:
|
|
rm -f *.exe
|
|
|
|
distclean:
|
|
rm gapi-codegen
|
|
|
|
prefix=@prefix@
|
|
install=@INSTALL@
|
|
|
|
install: all
|
|
../mkinstalldirs $(DESTDIR)$(prefix)/bin && \
|
|
$(install) gapi_codegen.exe $(DESTDIR)$(prefix)/bin && \
|
|
$(install) gapi-codegen $(DESTDIR)$(prefix)/bin
|
|
|
|
gapi_codegen.exe: *.cs
|
|
$(MCS) --unsafe -o gapi_codegen.exe -r System.Xml *.cs
|