-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
38 lines (31 loc) · 823 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# simple C/C++ makefile
#TARGET = usvgtest
TARGET = svgconcat
SOURCES = \
svgnode.cpp \
svgstyleparser.cpp \
svgparser.cpp \
svgpainter.cpp \
svgwriter.cpp \
cssparser.cpp \
test/svgconcat.cpp
# test/usvgtest.cpp
SOURCES += \
../pugixml/src/pugixml.cpp \
../ulib/geom.cpp \
../ulib/image.cpp \
../ulib/path2d.cpp \
../ulib/painter.cpp \
../nanovg-2/src/nanovg.c \
#SOURCES += \
# ../miniz/miniz.c \
# ../miniz/miniz_tdef.c \
# ../miniz/miniz_tinfl.c
# if source contains ../ paths, this should be the <current> directory; if ../../, <parent>/<current>; etc.
# - this ensures object files remain under build directory
TOPDIR = usvg
INC = . .. ../nanovg-2/src
INCSYS = ../pugixml/src ../stb
DEFS = PUGIXML_NO_XPATH PUGIXML_NO_EXCEPTIONS NO_PAINTER_GL NO_MINIZ
LIBS =
include Makefile.unix