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
|
-- # Copyright 1998 Richie Bielak and others
-- # Licensed under Eiffel Forum Freeware License, version 1;
-- # (see forum.txt)
system
hello
root
-- hello (root_cluster): "make"
hello2 (root_cluster): "make"
default
assertion (all);
precompiled ("$EIFFEL4/precomp/spec/$PLATFORM/base");
-- precompiled ("$EGTK/lib");
address_expression (yes);
cluster
root_cluster: "$EGTK/examples/hello";
gtk: "$EGTK/lib/gtk";
gtk_ise: "$EGTK/lib/gtk/ise";
gtk_extern: "$EGTK/lib/gtk/externals";
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";
external
object:
"${EGTK}/C/ise/eif_gtk.a",
"-lm `gtk-config --libs`"
end
|