aboutsummaryrefslogtreecommitdiff
path: root/example-cdc-gnu-linux/Makefile
blob: 28896aa18a6e4f3aebc1c0dd7db360d4e4bd61ca (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
# Makefile for example application of Chopstx

PROJECT = sample

### This is for GNU/Linux

CHOPSTX = ..
LDSCRIPT=
CSRC = sample.c usb-cdc.c command.c

CHIP=gnu-linux
USE_SYS = yes
USE_USB = yes
USE_ADC = yes
EMULATION=yes

###################################
CROSS =
CC   = $(CROSS)gcc
LD   = $(CROSS)gcc
OBJCOPY   = $(CROSS)objcopy

MCU   = none
CWARN = -Wall -Wextra -Wstrict-prototypes
DEFS  = -DGNU_LINUX_EMULATION -DUSE_SYS_BOARD_ID
OPT   = -g # -O3 -Os
LIBS  = -lpthread

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

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

distclean: clean

build/flash.data: Makefile
	@echo 'Generating 8192-byte flash.data'
	@/bin/echo -n -e '\xff\xff\xff\xff\xff\xff\xff\xff' >$@
	@for i in $(shell seq 1023); do /bin/echo -n -e '\xff\xff\xff\xff\xff\xff\xff\xff' >>$@; done