53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
# ECC Examples Makefile
|
|
CC = gcc
|
|
LIB_PATH = /usr/local
|
|
CFLAGS = -Wall -I$(LIB_PATH)/include
|
|
ZLIB =
|
|
#ZLIB += -lz
|
|
LIBS = -L$(LIB_PATH)/lib -lwolfssl -lm ${ZLIB}
|
|
|
|
# option variables
|
|
DYN_LIB = -lwolfssl
|
|
STATIC_LIB = $(LIB_PATH)/lib/libwolfssl.a
|
|
DEBUG_FLAGS = -g -DDEBUG
|
|
DEBUG_INC_PATHS = -MD
|
|
OPTIMIZE = -Os
|
|
|
|
# Options
|
|
#CFLAGS+=$(DEBUG_FLAGS)
|
|
CFLAGS+=$(OPTIMIZE)
|
|
#LIBS+=$(STATIC_LIB)
|
|
LIBS+=$(DYN_LIB)
|
|
|
|
# build targets
|
|
SRC=$(wildcard *.c)
|
|
TARGETS=$(patsubst %.c, %, $(SRC))
|
|
|
|
.PHONY: clean all
|
|
|
|
all: $(TARGETS)
|
|
|
|
debug: CFLAGS+=$(DEBUG_FLAGS)
|
|
debug: all
|
|
|
|
# build template
|
|
%: %.c
|
|
$(CC) -o $@ $< $(CFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(TARGETS) signedData_attrs.der signedData_noattrs.der \
|
|
signedFirmwarePkgData.der signedFirmwarePkgData_attrs.der \
|
|
signedFirmwarePkgData_noattrs.der \
|
|
signedData_EncryptedFPD_callback.der \
|
|
signedData_EncryptedFPD_AES128_callback.der \
|
|
signedEncryptedFPD_attrs.der signedEncryptedFPD_noattrs.der \
|
|
signedCompressedFPD_attrs.der signedCompressedFPD_noattrs.der \
|
|
signedEncryptedCompressedFPD_attrs.der signedEncryptedCompressedFPD_noattrs.der \
|
|
signedData_detached_attrs.der signedData_detached_noattrs.der \
|
|
signedData_cryptodev_attrs.der signedData_cryptodev_noattrs.der \
|
|
envelopedDataKTRI.der envelopedDataKARI.der \
|
|
envelopedDataPWRI.der envelopedDataORI.der envelopedDataKEKRI.der \
|
|
authEnvelopedDataKARI.der authEnvelopedDataKTRI.der \
|
|
authEnvelopedDataORI.der authEnvelopedDataPWRI.der encryptedData.der \
|
|
authEnvelopedDataKEKRI.der compressedData.der
|