1 #ifndef VIRTUALTARGET_H_
2 #define VIRTUALTARGET_H_
7 A target that is not associated with any file.
9 class VirtualTarget: public Target
12 VirtualTarget(Builder &, const std::string &);
13 virtual const char *get_type() const { return "VirtualTarget"; }
15 virtual void check_rebuild();
16 virtual Action *create_action() { return 0; }