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