]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Add command line options (not all of them work yet)
[builder.git] / source / systemlibrary.h
diff --git a/source/systemlibrary.h b/source/systemlibrary.h
new file mode 100644 (file)
index 0000000..9751270
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef SYSTEMLIBRARY_H_
+#define SYSTEMLIBRARY_H_
+
+#include "target.h"
+
+class SystemLibrary: public Target
+{
+public:
+       SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { }
+       const char *get_type() const { return "SystemLibrary"; }
+       void find_depends() { }
+       Action *build() { return 0; }
+};
+
+#endif