-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
54 lines (41 loc) · 1.77 KB
/
Makefile
File metadata and controls
54 lines (41 loc) · 1.77 KB
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
# #############################################################################
#
# This is an example of a simple library module.
#
# #############################################################################
DMOD_DIR=/home/pkubiak/Projects/choco-technologies/public/dmod
# -----------------------------------------------------------------------------
# Paths initialization
# -----------------------------------------------------------------------------
include $(DMOD_DIR)/paths.mk
# -----------------------------------------------------------------------------
# Module configuration
# -----------------------------------------------------------------------------
# The name of the module
DMOD_MODULE_NAME=dmffs
# The version of the module (can be overridden via command line or environment)
DMOD_MODULE_VERSION?=0.1
# The name of the author
DMOD_AUTHOR_NAME=Patryk Kubiak
# The list of C sources
DMOD_CSOURCES=dmffs.c
# The list of C++ sources
DMOD_CXXSOURCES=
# The list of include directories
DMOD_INC_DIRS=
# The list of libraries to link
DMOD_LIBS=
# The list of definitions
DMOD_DEFINITIONS=
# -----------------------------------------------------------------------------
# List of MAL interfaces implemented by the module
# -----------------------------------------------------------------------------
DMOD_MAL_IMPLS=
# -----------------------------------------------------------------------------
# List of DIF interfaces implemented by the module
# -----------------------------------------------------------------------------
DMOD_DIF_IMPLS=dmffs
# -----------------------------------------------------------------------------
# Include the dmod app makefile
# -----------------------------------------------------------------------------
include $(DMOD_DMF_LIB_FILE_PATH)