]> 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 aec3080..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#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 &b, const std::string &n): Target(b, 0, n) { }
-       const char *get_type() const { return "VirtualTarget"; }
-       Action     *build()          { rebuild=false; return 0; }
-       unsigned   count_rebuild();
-private:
-       void check_rebuild();
-};
-
-#endif