From 71cc260a3ca6d3d0594fd4cadb0711ae3f142932 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 7 Sep 2006 22:49:40 +0000 Subject: About to implement Rule, the heart of the porform generation system. Once that's done, we can actually run the performs, and, most likely build things. --- src/target.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/target.h') diff --git a/src/target.h b/src/target.h index 75fcb50..5325965 100644 --- a/src/target.h +++ b/src/target.h @@ -8,12 +8,17 @@ typedef std::list StringList; +class Build; + class Target { public: Target(); virtual ~Target(); + virtual void check( Build &bld ) = 0; + virtual void clean( Build &bld ) = 0; + void setName( const std::string &sName ) { this->sName = sName; -- cgit v1.2.3