2002-07-05 20:22:21 +00:00
|
|
|
EXTRA_DIRS =
|
|
|
|
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
DIRS=generator api glib pango atk gdk art gtk glade gnome sample
|
2001-12-01 14:32:35 +00:00
|
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
2002-03-24 17:04:25 +00:00
|
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe
|
2002-04-18 21:46:56 +00:00
|
|
|
MCS=mcs
|
2001-09-27 17:17:33 +00:00
|
|
|
|
2002-05-02 21:57:41 +00:00
|
|
|
all: linux
|
2001-09-27 17:17:33 +00:00
|
|
|
|
|
|
|
windows:
|
|
|
|
for i in $(DIRS); do \
|
|
|
|
(cd $$i; CSC=$(CSC) make windows) || exit 1;\
|
|
|
|
done;
|
|
|
|
|
|
|
|
unix:
|
|
|
|
@echo "'make unix' is broken for now."
|
2002-03-02 12:04:46 +00:00
|
|
|
|
2002-05-28 21:19:04 +00:00
|
|
|
linux: native binding
|
|
|
|
|
|
|
|
binding:
|
2002-03-02 12:04:46 +00:00
|
|
|
for i in $(DIRS); do \
|
2002-05-02 21:57:41 +00:00
|
|
|
(cd $$i; MCS="$(MCS)" make) || exit 1;\
|
|
|
|
done;
|
|
|
|
|
2002-05-28 21:19:04 +00:00
|
|
|
native:
|
|
|
|
(cd glue; make) || exit 1;
|
|
|
|
|
2002-05-08 00:29:51 +00:00
|
|
|
clean:
|
2002-08-06 02:07:10 +00:00
|
|
|
for i in glue $(DIRS); do \
|
2002-05-08 00:29:51 +00:00
|
|
|
(cd $$i; make clean) || exit 1; \
|
|
|
|
done;
|
|
|
|
|
2002-08-06 02:07:10 +00:00
|
|
|
distclean: clean
|
|
|
|
(cd glue; make distclean) || exit 1;
|
|
|
|
for i in $(DIRS); do \
|
|
|
|
rm -f $$i/Makefile; \
|
|
|
|
done
|
|
|
|
rm -f config.cache config.h config.log config.status libtool
|
|
|
|
|
2002-05-28 21:19:04 +00:00
|
|
|
install: install-native install-binding
|
|
|
|
|
|
|
|
install-binding:
|
2002-05-02 21:57:41 +00:00
|
|
|
for i in $(DIRS); do \
|
|
|
|
(cd $$i; make install) || exit 1; \
|
2002-03-02 12:04:46 +00:00
|
|
|
done;
|
2002-04-25 09:17:54 +00:00
|
|
|
|
2002-05-28 21:19:04 +00:00
|
|
|
install-native:
|
|
|
|
(cd glue; make install) || exit 1; \
|
|
|
|
|