diff options
Diffstat (limited to 'src/config.mak')
-rw-r--r-- | src/config.mak | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.mak b/src/config.mak index 5465a06..05b5182 100644 --- a/src/config.mak +++ b/src/config.mak @@ -4,6 +4,9 @@ OPT = YES DEFINES = CD_NO_OLD_INTERFACE +SRCSVG = base64.c lodpng.c cdsvg.c +SRCSVG := $(addprefix svg/, $(SRCSVG)) + SRCINTCGM = circle.c ellipse.c intcgm1.c \ intcgm2.c intcgm4.c intcgm6.c list.c \ sism.c tparse.c bparse.c @@ -27,7 +30,7 @@ SRCNULL := $(addprefix drv/, $(SRCNULL)) SRCCOMM = cd.c wd.c wdhdcpy.c rgb2map.c cd_vectortext.c cd_active.c \ cd_attributes.c cd_bitmap.c cd_image.c cd_primitives.c cd_text.c cd_util.c -SRC = $(SRCCOMM) $(SRCINTCGM) $(SRCDRV) $(SRCSIM) +SRC = $(SRCCOMM) $(SRCSVG) $(SRCINTCGM) $(SRCDRV) $(SRCSIM) ifneq ($(findstring Win, $(TEC_SYSNAME)), ) SRC += $(SRCWIN32) |