blob: ca612159a043770d06e0d08ad79966bc50ad6ac7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
include ../stm32f4/Makefile-raw.defs
IDVENDOR=0xfffe
IDPRODUCT=0xfffa
PRODUCT=stm32f4-disco
SERIAL=1
INC = \
ao.h \
ao_arch.h \
ao_arch_funcs.h \
ao_boot.h \
ao_pins.h \
ao_task.h \
ao_product.h \
stm32f4.h \
Makefile
ALTOS_SRC = \
ao_interrupt.c \
ao_romconfig.c \
ao_panic.c \
ao_timer.c \
ao_task.c \
ao_stdio.c \
ao_product.c \
ao_cmd.c \
ao_exti_stm32f4.c \
ao_usart_stm32f4.c \
ao_usb_gen.c \
ao_usb_stm32f4.c \
ao_led.c \
ao_impure.c
CFLAGS = $(STM32F4_CFLAGS)
PROG=stm32f4-disco-$(VERSION)
ELF=$(PROG).elf
IHX=$(PROG).ihx
SRC=$(ALTOS_SRC) ao_disco.c
OBJ=$(SRC:.c=.o)
MAP=$(PROG).map
all: $(ELF) $(IHX)
$(ELF): Makefile $(OBJ)
$(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJ) -Wl,-M=$(MAP) $(LIBS)
$(OBJ): $(INC)
distclean: clean
clean:
rm -f *.o *.elf *.ihx *.map
install:
uninstall:
|