summaryrefslogtreecommitdiff
path: root/Source/DirectFB/lib/fusion/shm/Makefile.am
blob: 23ed4a5893b14694f8312e3f204bdc8fba21af57 (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
## Makefile.am for DirectFB/lib/fusion/shm

INCLUDES = \
	-I$(top_builddir)/include	\
	-I$(top_builddir)/lib		\
	-I$(top_srcdir)/include		\
	-I$(top_srcdir)/lib

AM_CPPFLAGS = \
	-DDATADIR=\"@DATADIR@\"	\
	-DMODULEDIR=\"@MODULEDIR@\"

if ENABLE_MULTI
SHMSOURCES = heap.c pool.c shm.c
else
SHMSOURCES = fake.c
endif

EXTRA_DIST = fake.c

noinst_LTLIBRARIES = libfusion_shm.la

libfusion_shm_la_SOURCES = \
	$(SHMSOURCES)

includedir = @INCLUDEDIR@/fusion/shm

include_HEADERS = \
	pool.h			\
	shm.h			\
	shm_internal.h