diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 01:52:53 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 01:52:53 +0200 |
commit | 2fa3e53855dd12c13560dbe7da19eac7b90a3b29 (patch) | |
tree | 636feb35d4f28d4527501310f2f63994b170d466 /Engine | |
parent | 1f7ca9fd3964481318bbaddfb39acc5de8c7d65d (diff) |
Adding more skeletons
Diffstat (limited to 'Engine')
-rw-r--r-- | Engine/Makefile | 15 | ||||
-rw-r--r-- | Engine/crawler.cpp | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/Engine/Makefile b/Engine/Makefile new file mode 100644 index 0000000..55c1046 --- /dev/null +++ b/Engine/Makefile @@ -0,0 +1,15 @@ +TARGET = Engine.a + +SRCS = \ +crawler.cpp \ + +SPATH = + +CPPFLAGS = -I. -I../Database -I../Database/internals + +include ../Makefile.cfg + +$(TARGET): $(OBJS) + $(AR) $@ $^ + +-include $(DEPS) diff --git a/Engine/crawler.cpp b/Engine/crawler.cpp new file mode 100644 index 0000000..aef8cab --- /dev/null +++ b/Engine/crawler.cpp @@ -0,0 +1 @@ +#include "database.h"
\ No newline at end of file |