mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 14:20:51 +08:00
37 lines
931 B
Makefile
37 lines
931 B
Makefile
MYSRCPATHS = ../../common ../../common/cryptorf
|
|
MYSRCS = cryptolib.c util.c
|
|
MYINCLUDES = -I../../common/cryptorf
|
|
MYCFLAGS = -O3
|
|
MYDEFS =
|
|
|
|
# build artifacts
|
|
BINS = cm sm sma sma_multi
|
|
INSTALLTOOLS = $(BINS)
|
|
|
|
|
|
include ../../Makefile.host
|
|
# checking platform can be done only after Makefile.host
|
|
|
|
# Atomic / pThread
|
|
# RPi Zero gcc requires -latomic
|
|
# macOS might not like pthread?
|
|
ifneq ($(platform),Darwin)
|
|
MYLDLIBS += -lpthread -latomic
|
|
endif
|
|
|
|
# macOS needs c++14 standard when compiling c++
|
|
ifeq ($(platform),Darwin)
|
|
MYCXXFLAGS = -std=c++14
|
|
endif
|
|
|
|
ifneq (,$(findstring MINGW,$(platform)))
|
|
# Mingw uses by default Microsoft printf, we want the GNU printf (e.g. for %z)
|
|
# and setting _ISOC99_SOURCE sets internally __USE_MINGW_ANSI_STDIO=1
|
|
MYCFLAGS += -D_ISOC99_SOURCE
|
|
endif
|
|
|
|
|
|
cm : $(OBJDIR)/cm.o $(MYOBJS)
|
|
sm : $(OBJDIR)/sm.o $(MYOBJS)
|
|
sma : $(OBJDIR)/sma.o $(MYOBJS)
|
|
sma_multi : $(OBJDIR)/sma_multi.o $(MYOBJS)
|