-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsquantorLibEmbedded.mak
More file actions
55 lines (49 loc) · 1.72 KB
/
Copy pathsquantorLibEmbedded.mak
File metadata and controls
55 lines (49 loc) · 1.72 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
55
# SPDX-License-Identifier: MIT
#
# Copyright (c) 2021 Bart Bilos
# For conditions of distribution and use, see LICENSE file
# squantorLibEmbedded library settings
#
# Version: 20220715
# library settings
NAME := squantorLibEmbedded
# current makefile base dir relative to Makefile
LIB_DIR := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
# library files and includes
$(NAME)_LIB_FILES := \
$(LIB_DIR)/src/ansi/parse_ansi.c \
$(LIB_DIR)/src/ansi/parse_ansi.cpp \
$(LIB_DIR)/src/queue/queue_string.c \
$(LIB_DIR)/src/queue/queue_char.c \
$(LIB_DIR)/src/queue/queue_uint8.c \
$(LIB_DIR)/src/cmdline/cmdline_prompt.c \
$(LIB_DIR)/src/prompt/prompt_mini.c \
$(LIB_DIR)/src/command/command_mini.c \
$(LIB_DIR)/src/datastream/dswritechar.c \
$(LIB_DIR)/src/datastream/dsreadchar.c \
$(LIB_DIR)/src/datastream/dsputs.c \
$(LIB_DIR)/src/print/print_digit.c \
$(LIB_DIR)/src/print/print_hex_u8.c \
$(LIB_DIR)/src/print/print_hex_u16.c \
$(LIB_DIR)/src/print/print_hex_u32.c \
$(LIB_DIR)/src/print/print_dec_u16.c \
$(LIB_DIR)/src/print/print_decnz_u16.c \
$(LIB_DIR)/src/print/print_decnz_u32.c \
$(LIB_DIR)/src/print/print_dec_u32.c \
$(LIB_DIR)/src/print/print_bin_u32.c \
$(LIB_DIR)/src/parse/parsedigit.c \
$(LIB_DIR)/src/parse/parse_digit.cpp \
$(LIB_DIR)/src/font/8x8_col.cpp \
$(LIB_DIR)/src/font/8x8_row.cpp \
$(LIB_DIR)/src/font/8x8_rowflip.cpp \
$(LIB_DIR)/src/bit/bitzoom.c \
$(LIB_DIR)/src/pulse_density/pulse_density.c \
$(LIB_DIR)/src/pulse_density/pulse_density.cpp \
$(LIB_DIR)/src/bit/bitblit1d.cpp \
$(LIB_DIR)/src/bit/readmodifywrite.cpp \
$(LIB_DIR)/src/bit/bitblit2d.cpp \
$(LIB_DIR)/src/parity/parity.c \
$(LIB_DIR)/src/format/format.cpp
$(NAME)_LIB_INCLUDES := -I$(LIB_DIR)/inc
# --- nothing user definable below ---
LIBRARIES += $(NAME)