diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-20 23:10:31 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-20 23:10:31 +0200 |
commit | 1f7ca9fd3964481318bbaddfb39acc5de8c7d65d (patch) | |
tree | f13ae2ddd03c23d81157b86bf9305de36a5ace60 /externals | |
parent | eb3bf203a14e81735d6f74467541a6500a3bdf86 (diff) |
Basic makefile structure; making the project at least compilable.
Diffstat (limited to 'externals')
m--------- | externals/Base | 0 | ||||
-rw-r--r-- | externals/Makefile | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/externals/Base b/externals/Base new file mode 160000 +Subproject 6d1dee65d5ad695670d73bf3e162b4b6e984af3 diff --git a/externals/Makefile b/externals/Makefile new file mode 100644 index 0000000..57d7d16 --- /dev/null +++ b/externals/Makefile @@ -0,0 +1,24 @@ +TARGET = externals.a + +SRCS = \ +Handle.cpp \ +String.cpp \ +Exceptions.cpp \ +Input.cpp \ +Output.cpp \ +Buffer.cpp \ +generic.cpp \ +checkargs.c \ +datecalc.c \ +hashtab.c \ +lookupa.c \ +recycle.c \ + +SPATH = Base/lib + +include ../Makefile.cfg + +$(TARGET): $(OBJS) + $(AR) $@ $^ + +-include $(DEPS) |