summaryrefslogtreecommitdiff
path: root/externals/Makefile
blob: 57d7d169535db3c8b11477b499999b194030e207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)