]> 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 c2fa288..0000000
+++ /dev/null
@@ -1,29 +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 "target.h"
-
-class TarBall: public Target
-{
-private:
-       std::string tarname;
-
-public:
-       TarBall(Builder &, const SourcePackage &, const std::string & =std::string());
-       virtual const char *get_type() const { return "TarBall"; }
-       const SourcePackage *get_package() const;
-       virtual void find_depends();
-private:
-       virtual Action *create_action();
-
-       static std::string create_target_name(const SourcePackage &, const std::string &);
-};
-
-#endif