diff --git a/build/Program.jam b/build/Program.jam index ac10dde..44f1e8d 100644 --- a/build/Program.jam +++ b/build/Program.jam @@ -109,26 +109,6 @@ rule EdeProgramAsFltkBare } } -# EfltkProgram [target] : [sources] : [noinstall] ; -# Creates programs that will be linked with efltk. If [noinstall] is given, -# [target] will not be installed wit 'jam install'. -rule EfltkProgram -{ - if ! $(EFLTKINCLUDE) || ! $(EFLTKLIB) { - Echo "EFLTKINCLUDE or EFLTKLIB not defined; $(1) will not be built" ; - return ; - } - - MakeProgramPrivate $(1) : $(2) - : $(EFLTKLIB) $(STDLIB) - : $(GLOBALFLAGS) $(EFLTKINCLUDE) ; - - # install it where ede binaries resides - if $(3) != "noinstall" { - InstallEdeProgram $(1) ; - } -} - # FltkProgram [target] : [sources] : [noinstall] ; # Creates programs that will be linked with fltk only. It will use full fltk # dependencies (images).