From 1f7ca9fd3964481318bbaddfb39acc5de8c7d65d Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sun, 20 Sep 2009 23:10:31 +0200 Subject: Basic makefile structure; making the project at least compilable. --- Utils/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Utils/Makefile (limited to 'Utils/Makefile') diff --git a/Utils/Makefile b/Utils/Makefile new file mode 100644 index 0000000..1b001a8 --- /dev/null +++ b/Utils/Makefile @@ -0,0 +1,13 @@ +TARGET = Utils.a + +SRCS = \ +log.cpp \ + +CPPFLAGS = -I. + +include ../Makefile.cfg + +$(TARGET): $(OBJS) + $(AR) $@ $^ + +-include $(DEPS) -- cgit v1.2.3