Files

40 lines
1007 B
Makefile
Raw Permalink Normal View History

2020-08-19 21:38:21 +02:00
MYSRCPATHS = ../../common ../../common/cryptorf
MYSRCS = cryptolib.c util.c
MYINCLUDES = -I../../common/cryptorf
2023-11-03 11:36:10 +01:00
MYCFLAGS = -O3
2020-08-19 21:38:21 +02:00
MYDEFS =
2023-09-12 20:22:04 +02:00
2023-09-16 09:32:47 +02:00
# build artifacts
BINS = cm sm sma sma_multi
INSTALLTOOLS = $(BINS)
include ../../Makefile.host
# checking platform can be done only after Makefile.host
2023-09-12 20:47:59 +02:00
# Atomic / pThread
2023-09-12 20:22:04 +02:00
# RPi Zero gcc requires -latomic
2023-09-16 09:32:47 +02:00
# macOS might not like pthread?
2023-09-12 20:22:04 +02:00
ifneq ($(platform),Darwin)
MYLDLIBS += -lpthread -latomic
2023-09-12 20:22:04 +02:00
endif
2023-09-16 09:32:47 +02:00
# macOS needs c++14 standard when compiling c++
ifeq ($(platform),Darwin)
MYCXXFLAGS += -std=c++14
endif
2020-08-19 21:38:21 +02:00
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
2023-09-15 19:08:24 +02:00
MYCFLAGS += -D_ISOC99_SOURCE
2020-08-19 21:38:21 +02:00
endif
2026-02-22 11:58:36 +01:00
# Ignore historical GCC<7.1 warning on ARM 32-bit
MYCXXFLAGS += -Wno-psabi
2023-09-16 09:32:47 +02:00
2020-08-19 21:38:21 +02:00
cm : $(OBJDIR)/cm.o $(MYOBJS)
sm : $(OBJDIR)/sm.o $(MYOBJS)
sma : $(OBJDIR)/sma.o $(MYOBJS)
sma_multi : $(OBJDIR)/sma_multi.o $(MYOBJS)