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