1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
-- # Copyright 1998 Richie Bielak and others
-- # Licensed under Eiffel Forum Freeware License, version 1;
-- # (see forum.txt)
system
MOZILLA_TEST
root
ROOT_CLASS (root_cluster): "make"
default
assertion (all);
-- precompiled ("$EIFFEL4/precomp/spec/$PLATFORM/base");
-- precompiled ("$EGTK/lib");
address_expression (yes);
cluster
root_cluster: ".";
-- eGTK
gtk: "$EGTK/lib/gtk";
gtk_extern: "$EGTK/lib/gtk/externals";
gtk_ise: "$EGTK/lib/gtk/ise";
gdk: "$EGTK/lib/gdk";
gdk_extern: "$EGTK/lib/gdk/externals";
gdk_ise: "$EGTK/lib/gdk/ise";
egtk: "$EGTK/lib/egtk";
egtk_ise: "$EGTK/lib/egtk/ise";
glib: "$EGTK/lib/glib";
eifc: "$EGTK/lib/eifc";
eifc_ise: "$EGTK/lib/eifc/ise";
eifc_extern: "$EGTK/lib/eifc/externals";
mozilla: "$EGTK/lib/mozilla";
mozilla_external: "$EGTK/lib/mozilla/externals";
mozilla_ise: "$EGTK/lib/mozilla/ise";
kernel: "$EIFFEL4/library/base/kernel";
support: "$EIFFEL4/library/base/support";
access: "$EIFFEL4/library/base/structures/access";
cursors: "$EIFFEL4/library/base/structures/cursors";
cursor_tree: "$EIFFEL4/library/base/structures/cursor_tree";
dispenser: "$EIFFEL4/library/base/structures/dispenser";
iteration: "$EIFFEL4/library/base/structures/iteration";
list: "$EIFFEL4/library/base/structures/list";
set: "$EIFFEL4/library/base/structures/set";
sort: "$EIFFEL4/library/base/structures/sort";
storage: "$EIFFEL4/library/base/structures/storage";
table: "$EIFFEL4/library/base/structures/table";
traversing: "$EIFFEL4/library/base/structures/traversing";
tree: "$EIFFEL4/library/base/structures/tree";
external
object:
"${EGTK}/C/ise/eif_gtk.a",
"-lm `gtk-config --libs`",
"-L${MOZILLA_FIVE_HOME} -lgtkembedmoz -lgtksuperwin"
end
|