-
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.21 KB
/
Makefile
File metadata and controls
35 lines (32 loc) · 1.21 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 dmheap module
#
# This Makefile is used to build the dmheap module library
#
# DONT EDIT THIS FILE - it is automatically generated.
# Edit the scripts/Makefile-lib.in file instead.
#
# ##############################################################################
ifeq ($(DMOD_DIR),)
DMOD_DIR = _codeql_build_dir/_deps/dmod-src
endif
#
# Name of the module
#
DMOD_LIB_NAME=libdmheap.a
DMOD_SOURCES=src/dmheap.c
DMOD_INC_DIRS = include\
$(DMOD_DIR)/inc\
_codeql_build_dir/_deps/dmod-build
DMOD_LIBS = dmod_inc
DMOD_GEN_HEADERS_IN =
DMOD_DEFINITIONS = $<$<BOOL:OFF>:DMHEAP_DONT_IMPLEMENT_DMOD_API>;DMHEAP_VERSION="1.0"
# -----------------------------------------------------------------------------
# Initialization of paths
# -----------------------------------------------------------------------------
include $(DMOD_DIR)/paths.mk
# -----------------------------------------------------------------------------
# Including the template for the library
# -----------------------------------------------------------------------------
DMOD_LIB_OBJS_DIR = $(DMOD_OBJS_DIR)/dmheap
include $(DMOD_SLIB_FILE_PATH)