9892ad5fcc7cef849d5a1a3779f04dc82bf9dc4c
[fw/altos] / src / telebt-v3.0 / Makefile
1 #
2 # AltOS build
3 #
4 #
5
6 include ../stm/Makefile.defs
7
8 INC = \
9         ao.h \
10         ao_arch.h \
11         ao_arch_funcs.h \
12         ao_boot.h \
13         ao_pins.h \
14         ao_product.h \
15         ao_cc1200_CC1200.h \
16         ao_profile.h \
17         ao_task.h \
18         stm32l.h \
19         Makefile
20
21 #PROFILE=ao_profile.c
22 #PROFILE_DEF=-DAO_PROFILE=1
23
24 #SAMPLE_PROFILE=ao_sample_profile.c \
25 #       ao_sample_profile_timer.c
26 #SAMPLE_PROFILE_DEF=-DHAS_SAMPLE_PROFILE=1
27
28 #STACK_GUARD=ao_mpu_stm.c
29 #STACK_GUARD_DEF=-DHAS_STACK_GUARD=1
30
31 ALTOS_SRC = \
32         ao_boot_chain.c \
33         ao_interrupt.c \
34         ao_product.c \
35         ao_romconfig.c \
36         ao_cmd.c \
37         ao_config.c \
38         ao_data.c \
39         ao_task.c \
40         ao_led_stm.c \
41         ao_stdio.c \
42         ao_panic.c \
43         ao_timer.c \
44         ao_mutex.c \
45         ao_serial_stm.c \
46         ao_freq.c \
47         ao_dma_stm.c \
48         ao_spi_stm.c \
49         ao_cc1200.c \
50         ao_adc_stm.c \
51         ao_btm.c \
52         ao_usb_stm.c \
53         ao_exti_stm.c \
54         ao_eeprom_stm.c \
55         ao_convert_volt.c \
56         ao_packet_master.c \
57         ao_packet.c \
58         ao_send_packet.c \
59         ao_monitor.c \
60         $(PROFILE) \
61         $(SAMPLE_PROFILE) \
62         $(STACK_GUARD) \
63         ao_lco_func.c \
64         ao_radio_cmac.c \
65         ao_aes.c \
66         ao_aes_tables.c \
67         ao_lco_cmd.c
68
69 PRODUCT=TeleBT-v3.0
70 PRODUCT_DEF=-DTELEBT_V_3_0
71 IDPRODUCT=0x000e
72
73 CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) $(SAMPLE_PROFILE_DEF) $(STACK_GUARD_DEF) -Os -g
74
75 PROGNAME=telebt-v3.0
76 PROG=$(PROGNAME)-$(VERSION).elf
77 HEX=$(PROGNAME)-$(VERSION).ihx
78
79 SRC=$(ALTOS_SRC) ao_telebt.c
80 OBJ=$(SRC:.c=.o)
81
82 all: $(PROG) $(HEX)
83
84 $(PROG): Makefile $(OBJ) altos.ld
85         $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
86
87 $(OBJ): $(INC)
88
89 ao_product.h: ao-make-product.5c ../Version
90         $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@
91
92 distclean:      clean
93
94 clean:
95         rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx
96         rm -f ao_product.h
97
98 install:
99
100 uninstall: