X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=inline;f=source%2Fbinary.cpp;h=b3f018488347fc090d57839a0a0cc7344eaf40e2;hb=16bda19cc87b5064daad9955f0ebb5ac5be7dec7;hp=4728cd19e2ee410698d0b6c86ad8fb29d1b0da79;hpb=bd2a50ecb9f582c6e9569ffc9f33d41f10363c5f;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index 4728cd1..b3f0184 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -3,11 +3,10 @@ #include "binary.h" #include "builder.h" #include "component.h" -#include "install.h" #include "link.h" #include "objectfile.h" -#include "package.h" #include "sharedlibrary.h" +#include "sourcepackage.h" #include "staticlibrary.h" using namespace std; @@ -17,7 +16,6 @@ Binary::Binary(Builder &b, const Component &c, const list &objs): FileTarget(b, &c.get_package(), generate_target_path(c)), comp(c) { - buildable = true; for(list::const_iterator i=objs.begin(); i!=objs.end(); ++i) add_depend(*i); }