X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffiletarget.cpp;h=51a92d13b1a11f61c34671a1d8c39adfa710bdcc;hb=HEAD;hp=ed3e66b7c3711577a6a5e620086eec18e506f063;hpb=66d1078c04849ec17a7343d0494d6ed087e04318;p=builder.git diff --git a/source/filetarget.cpp b/source/filetarget.cpp deleted file mode 100644 index ed3e66b..0000000 --- a/source/filetarget.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include -#include -#include "file.h" - -using namespace std; -using namespace Msp; - -FileTarget::FileTarget(Builder &b, const Package *p, const FS::Path &a): - // XXX Builder depends on target name being its path for locating file targets - Target(b, p, /*FS::basename*/(a.str())), - path(a) -{ - struct stat st; - if(!FS::stat(path, st)) - mtime=Time::TimeStamp::from_unixtime(st.st_mtime); -}