]> git.tdb.fi Git - builder.git/blobdiff - source/file.h
Add tarball building
[builder.git] / source / file.h
diff --git a/source/file.h b/source/file.h
new file mode 100644 (file)
index 0000000..35c1087
--- /dev/null
@@ -0,0 +1,21 @@
+/* $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"; }
+       virtual Action *build() { return 0; }
+};
+
+#endif