]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
bd554296b8b8cda181fc480dad907342306b2850
[builder.git] / source / systemlibrary.h
1 #ifndef SYSTEMLIBRARY_H_
2 #define SYSTEMLIBRARY_H_
3
4 #include "target.h"
5
6 class SystemLibrary: public Target
7 {
8 public:
9         SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { }
10         const char *get_type() const { return "SystemLibrary"; }
11         Action *build() { return 0; }
12 };
13
14 #endif