proxmark3/client/tinycbor/Makefile

23 lines
472 B
Makefile
Raw Normal View History

MYSRCPATHS =
MYINCLUDES =
# Strange errors on Mingw when compiling with C99
#MYCFLAGS = -std=c99 -D_ISOC99_SOURCE
MYCFLAGS =
MYDEFS =
MYSRCS = \
2018-11-16 23:05:48 +08:00
cborencoder.c \
cborencoder_close_container_checked.c \
cborerrorstrings.c \
cborparser.c \
cborparser_dup_string.c \
cborpretty.c \
cbortojson.c \
cborvalidation.c \
2019-03-10 18:35:03 +08:00
LIB_A = tinycbor.a
2019-03-10 18:35:03 +08:00
# Strange errors on Mingw when compiling with -O3
CFLAGS ?= -Wall -Werror -O2
2018-11-16 23:05:48 +08:00
include ../../Makefile.host