blob: 08540520b25733ae890f44fed2f37d60f097cefc (
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
25
26
27
28
29
30
31
32
33
|
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS =
if BUILD_LOADER_EDB
if !EVAS_STATIC_BUILD_EDB
SUBDIRS += edb
endif
endif
if BUILD_LOADER_EET
if !EVAS_STATIC_BUILD_EET
SUBDIRS += eet
endif
endif
if BUILD_SAVER_JPEG
if !EVAS_STATIC_BUILD_JPEG
SUBDIRS += jpeg
endif
endif
if BUILD_LOADER_PNG
if !EVAS_STATIC_BUILD_PNG
SUBDIRS += png
endif
endif
if BUILD_LOADER_TIFF
if !EVAS_STATIC_BUILD_TIFF
SUBDIRS += tiff
endif
endif
|