summaryrefslogtreecommitdiffstats
path: root/firmware/at91sam7/openbeacon-estimator/Makefile
blob: a65117f71c813497783356c9a290591885550718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGET=openbeacon-estimator
ARCH=AT91SAM7S
CPU=$(ARCH)128
DEBUG=-g
OPTIM=-O2

APP_CFLAGS=-Iapplication    

APP_SRC= \
  application/main.c \
  application/proto.c \
  application/cmd.c \
  application/xxtea.c
  
all: $(TARGET).bin
  
app_clean:
	find application -name '*.o' -exec rm \{\} \;

include ../core/Makefile.rules