Link against edelib-gui library

This commit is contained in:
Sanel Zukan
2009-05-14 16:06:10 +00:00
parent 58a126ad1f
commit 39770b5a0e
3 changed files with 9 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ rule EdeProgram
}
MakeProgramPrivate $(1) : $(2)
: $(EDELIBLIB) $(FLTKLIB) $(STDLIB)
: $(EDELIB_GUI_LIB) $(EDELIBLIB) $(FLTKLIB) $(STDLIB)
: $(GLOBALFLAGS) $(EDELIBINCLUDE) $(FLTKINCLUDE) ;
if $(3) != "noinstall" {
@@ -101,7 +101,7 @@ rule EdeProgramAsFltkBare
}
MakeProgramPrivate $(1) : $(2)
: $(EDELIBLIB) $(FLTKLIB_NOIMAGES) $(STDLIB)
: $(EDELIB_GUI_LIB) $(EDELIBLIB) $(FLTKLIB_NOIMAGES) $(STDLIB)
: $(GLOBALFLAGS) $(EDELIBINCLUDE) $(FLTKINCLUDE) ;
if $(3) != "noinstall" {
@@ -109,8 +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'.