mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-04 20:50:37 -08:00
14 lines
293 B
Makefile
14 lines
293 B
Makefile
# Makefile for ID48LIB library
|
|
MYSRCPATHS =
|
|
MYINCLUDES = -I.
|
|
MYCFLAGS = -Wpedantic -Wall -Werror -O3 -Wno-unknown-pragmas -Wno-inline -Wno-unused-function
|
|
MYDEFS = -DID48_NO_STDIO
|
|
MYSRCS = \
|
|
id48_data.c \
|
|
id48_generator.c \
|
|
id48_recover.c
|
|
|
|
LIB_A = libid48.a
|
|
|
|
include ../../../Makefile.host
|