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

SRCS = \
loader.cpp \

SPATH =

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

include ../Makefile.cfg

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

-include $(DEPS)