7 lines
703 B
Makefile
7 lines
703 B
Makefile
CC = arm-none-eabi-gcc
|
|
CFLAGS = -mcpu=cortex-m0plus -mthumb -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -g3 -I. -I"../Includes" -I"../../../utb_frdm_vyuka/gpio" -std=c99 -MMD -MP -MF"gpio_state_machine.d" -MT"gpio_state_machine.o" -c
|
|
# arm-none-eabi-gcc -mcpu=cortex-m0plus -mthumb -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -g3 -I"../Sources" -I"../Includes" -I"../../../drivers/gpio" -std=c99 -MMD -MP -MF"../Sources/gpio_state_machine.d" -MT"../Sources/gpio_state_machine.o" -c -o "../Sources/gpio_state_machine.o" "../Sources/gpio_state_machine.c"
|
|
|
|
build: gpio_state_machine.o
|
|
$(CC) $(CFLAGS) -o gpio_state_machine.o gpio_state_machine.c
|