1234567891011121314151617181920212223242526272829303132 |
- #----------------------------------------------------------------------------
- # Target file name (without extension).
- # This is the name of the compiled .hex file.
- TARGET = simple-speck
- # Set platform and target
- PLATFORM=CWLITEARM
- CRYPTO_TARGET=NONE
- # List C source files here.
- # Header files (.h) are automatically pulled in.
- SRC += simple-speck.c
- SRC += speck3264.c
- # -----------------------------------------------------------------------------
- ifeq ($(CRYPTO_OPTIONS),)
- CRYPTO_OPTIONS = AES128C
- endif
- #Add simpleserial project to build
- include deps/Makefile.simpleserial
- FIRMWAREPATH = deps/
- include $(FIRMWAREPATH)/Makefile.inc
- local:
- gcc speck3264.c -o speck
- local_arm:
- arm-none-eabi-gcc -c -mcpu=cortex-m4 -I. -mthumb -mfloat-abi=soft -fmessage-length=0 -ffunction-sections -gdwarf-2 -DSS_VER=SS_VER_1_1 -DSTM32F303xC -DSTM32F3 -DSTM32 -DDEBUG -DPLATFORM=CWLITEARM -DF_CPU=7372800UL -DSS_VER_2_0=2 -DSS_VER_2_1=3 -DSS_VER_1_1=1 -DSS_VER_1_0=0 -Os -funsigned-char -funsigned-bitfields -fshort-enums -Wall -Wstrict-prototypes -std=gnu99 -MMD -MP speck3264.c -o speck.arm
|