]> git.tdb.fi Git - builder.git/blobdiff - source/virtualtarget.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / virtualtarget.h
diff --git a/source/virtualtarget.h b/source/virtualtarget.h
deleted file mode 100644 (file)
index 9822e65..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef VIRTUALTARGET_H_
-#define VIRTUALTARGET_H_
-
-#include "target.h"
-
-/**
-A target that is not associated with any file.
-*/
-class VirtualTarget: public Target
-{
-public:
-       VirtualTarget(Builder &, const std::string &);
-       virtual const char *get_type() const { return "VirtualTarget"; }
-private:
-       virtual void check_rebuild();
-       virtual Action *create_action() { return 0; }
-};
-
-#endif