summaryrefslogtreecommitdiff
path: root/Engine/Makefile
blob: 55c1046718eab4f5253fac04e0178dbcd64fe739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TARGET = Engine.a

SRCS = \
crawler.cpp \

SPATH =

CPPFLAGS = -I. -I../Database -I../Database/internals

include ../Makefile.cfg

$(TARGET): $(OBJS)
	$(AR) $@ $^

-include $(DEPS)