summaryrefslogtreecommitdiffstats
path: root/domx/mm_osal/Makefile
blob: a83814f6925b5ccefb67c2696bd0f1011c4107f8 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

include $(PROJROOT)/make/start.mk



# Target name and extension
# static library        (ST_LIB): filename.a
# shared library soname (SH_LIB): filename.so.maj_ver.min_ver
# executable            (EXEC)  : filename.out

TARGETNAME  = libmm_osal


# TARGETTYPE must be EXEC, ST_LIB or SH_LIB in upper case.

TARGETTYPE  = SH_LIB

# install directory relative to the HOSTTARGET directory
HOSTRELEASE = lib

# install directory relative to the root filesystem
ROOTFSRELEASE = lib

# Filename must not begin with '.', '/' or '\'

SOURCES     = \
    src/timm_osal.c \
	src/timm_osal_events.c \
	src/timm_osal_memory.c \
	src/timm_osal_mutex.c \
	src/timm_osal_pipes.c \
	src/timm_osal_semaphores.c \
	src/timm_osal_task.c \
	src/timm_osal_trace.c



# Search path for include files

INCLUDES    = \
    inc/ \



ST_LIBS        = 
SH_LIBS        = 
#pthread
#pthread rt utils procmgr ipc rcm notify
#SH_LIBS        += sysmgr sysmemmgr


# Search path for library (and linker command) files.
# Current folder and target folder are included by default.

LIBINCLUDES =


# Do not change below "include" line(s)

include $(PROJROOT)/make/build.mk