]> git.tdb.fi Git - builder.git/blobdiff - source/filetarget.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / filetarget.h
diff --git a/source/filetarget.h b/source/filetarget.h
deleted file mode 100644 (file)
index 6c12a5d..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifndef FILETARGET_H_
-#define FILETARGET_H_
-
-#include <msp/fs/path.h>
-#include "target.h"
-
-/**
-An intermediate base class for targets that represent files.  Almost all target
-classes are derived from this.
-*/
-class FileTarget: public Target
-{
-protected:
-       Msp::FS::Path path;
-       Msp::Time::TimeStamp mtime;
-       unsigned size;
-       Msp::FS::Path install_location;
-
-       FileTarget(Builder &, const Msp::FS::Path &);
-       FileTarget(Builder &, const SourcePackage &, const Msp::FS::Path &);
-private:
-       void init(const SourcePackage *);
-       void stat();
-       static std::string generate_name(Builder &, const SourcePackage *, const Msp::FS::Path &);
-
-public:
-       const Msp::FS::Path &get_path() const { return path; }
-       const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
-       unsigned get_size() const { return size; }
-
-       bool is_installable() const { return !install_location.empty(); }
-       const Msp::FS::Path &get_install_location() const { return install_location; }
-
-       /**
-       Changes the mtime of the target to the current time.
-       */
-       void touch();
-
-protected:
-       virtual void check_rebuild();
-
-       virtual std::string create_build_signature() const;
-
-public:
-       virtual Task *build();
-
-protected:
-       virtual void build_finished(bool);
-};
-
-#endif