aboutsummaryrefslogtreecommitdiff
path: root/example-fs-bb48/Makefile
blob: e4d0c73dd19b7e634141e1536190147ad534214f (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
# Makefile for example application of Chopstx

PROJECT = sample

### Currently, it's for FS-BB48.

CHOPSTX = ..
LDSCRIPT= sample.ld
CSRC = sample.c usb-cdc.c command.c touch.c
CHIP=mkl27z

USE_SYS = yes
USE_USB = yes
USE_ADC = yes

###################################
CROSS = arm-none-eabi-
CC   = $(CROSS)gcc
LD   = $(CROSS)gcc
OBJCOPY   = $(CROSS)objcopy

MCU   = cortex-m0plus
CWARN = -Wall -Wextra -Wstrict-prototypes
DEFS  = -DFREE_STANDING -DMHZ=48 -DUSE_SYS3
OPT   = -O3 -Os -g
LIBS  =

####################
include ../rules.mk

board.h:
	@echo Please make a symbolic link \'board.h\' to a file in ../board;
	@exit 1

distclean: clean
	rm -f board.h