]> git.tdb.fi Git - builder.git/blobdiff - source/file.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / file.h
diff --git a/source/file.h b/source/file.h
deleted file mode 100644 (file)
index cd3eccf..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef FILE_H_
-#define FILE_H_
-
-#include "target.h"
-
-class File: public Target
-{
-public:
-       File(Builder &, const std::string &);
-       virtual const char *get_type() const { return "File"; }
-private:
-       virtual Action    *create_action()     { return 0; }
-};
-
-#endif