-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (32 loc) · 1.17 KB
/
Makefile
File metadata and controls
35 lines (32 loc) · 1.17 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
# ##############################################################################
# Makefile for the dmlist module
#
# This Makefile is used to build the dmlist module library
#
# DONT EDIT THIS FILE - it is automatically generated.
# Edit the scripts/Makefile-lib.in file instead.
#
# ##############################################################################
ifeq ($(DMOD_DIR),)
DMOD_DIR = build/_deps/dmod-src
endif
#
# Name of the module
#
DMOD_LIB_NAME=libdmlist.a
DMOD_SOURCES=src/dmlist.c
DMOD_INC_DIRS = include\
$(DMOD_DIR)/inc\
build/_deps/dmod-build
DMOD_LIBS = dmod_inc
DMOD_GEN_HEADERS_IN =
DMOD_DEFINITIONS = DMLIST_VERSION_STRING="== dmlist ver. 1.0 ==\n"
# -----------------------------------------------------------------------------
# Initialization of paths
# -----------------------------------------------------------------------------
include $(DMOD_DIR)/paths.mk
# -----------------------------------------------------------------------------
# Including the template for the library
# -----------------------------------------------------------------------------
DMOD_LIB_OBJS_DIR = $(DMOD_OBJS_DIR)/dmlist
include $(DMOD_SLIB_FILE_PATH)