summaryrefslogtreecommitdiffstats
path: root/app/Makefile
blob: 0a076d27cd03a926d8d53f48aaac91da09dc626a (plain)
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
60
61
62
##
## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
## This library is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this library.  If not, see <http://www.gnu.org/licenses/>.
##

CPROTO=cproto
PROG=candlestick



V=1
default: ${PROG}.elf

CSRCS=dfu.c main.c usb.c  led.c ticker.c i2c.c lcd.c   cdcacm.c usart.c ring.c serial.c gpio.c console.c ringer.c modem.c dialstr.c



BINARY = ${PROG}
OBJS = ${CSRCS:%.c=%.o}
DEFINES=-DSLIM

include ../Makefile.include

#DID=$(shell printf '\#include "id.h"\nID_PRODUCT' | ${CC} -I.. -E - | grep -v ^\# )

INCLUDES +=  -I../include

dfu:${PROG}.dfu
	dfu-util -R -a 0 -d 1d6b:cad5 -s 0x08002000:leave -D $<

server: 
	$(Q)$(OOCD) -f $(OOCD_INTERFACE) -f $(OOCD_BOARD) 

debug:  ${PROG}.elf
	echo "target remote localhost:3333" > debug.start
	${GDB} ${PROG}.elf -x debug.start

program: ${PROG}.elf
	echo halt | nc -t localhost 4444
	echo flash write_image erase ${PWD}/$< 0x2000 | nc -t localhost 4444
	echo reset run | nc -t localhost 4444

protos:
	echo -n > prototypes.h
	${CPROTO} $(INCLUDES) $(DEFINES) -e -v ${CSRCS} > prototypes.h.tmp
	mv -f prototypes.h.tmp prototypes.h

EXTRA_CLEAN=debug.start