1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-19 07:02:13 +00:00
stmbl/lib/Makefile
2013-12-09 23:04:24 +01:00

41 lines
1.2 KiB
Makefile

CC=arm-none-eabi-gcc
AR=arm-none-eabi-ar
#CCDIR = /Users/rene/Downloads/gcc-arm-none-eabi-4_7-2013q3/bin
###########################################
vpath %.c src src/peripherals
CFLAGS = -g -O2 -Wall
CFLAGS += -mlittle-endian -mthumb -mcpu=cortex-m4 -mthumb-interwork
CFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16
CFLAGS += -ffreestanding -nostdlib
CFLAGS += -Iinc -Iinc/core -Iinc/peripherals
#SRCS = stm32f4_discovery.c
SRCS = misc.c stm32f4xx_dma.c stm32f4xx_rcc.c stm32f4xx_adc.c \
stm32f4xx_exti.c stm32f4xx_rng.c stm32f4xx_can.c stm32f4xx_flash.c \
stm32f4xx_rtc.c stm32f4xx_crc.c stm32f4xx_fsmc.c stm32f4xx_sdio.c \
stm32f4xx_cryp_aes.c stm32f4xx_gpio.c stm32f4xx_spi.c \
stm32f4xx_cryp.c stm32f4xx_hash.c stm32f4xx_syscfg.c \
stm32f4xx_cryp_des.c stm32f4xx_hash_md5.c stm32f4xx_tim.c \
stm32f4xx_cryp_tdes.c stm32f4xx_hash_sha1.c stm32f4xx_usart.c \
stm32f4xx_dac.c stm32f4xx_i2c.c stm32f4xx_wwdg.c \
stm32f4xx_dbgmcu.c stm32f4xx_iwdg.c \
stm32f4xx_dcmi.c stm32f4xx_pwr.c
OBJS = $(SRCS:.c=.o)
.PHONY: libstm32f4.a
all: libstm32f4.a
%.o : %.c
$(CC) $(CFLAGS) -c -o $@ $^
libstm32f4.a: $(OBJS)
$(AR) -r $@ $(OBJS)
clean:
rm -f $(OBJS) libstm32f4.a