mirror of
https://github.com/cnlohr/lolra.git
synced 2026-06-15 07:19:25 +00:00
24 lines
415 B
Makefile
24 lines
415 B
Makefile
all : flash
|
|
|
|
TARGET:=loratest
|
|
TARGET_MCU:=CH32V003
|
|
CH32V003FUN:=../ch32v003fun/ch32v003fun
|
|
|
|
EXTRA_ELF_DEPENDENCIES:=chirpbuff.h
|
|
|
|
EXTRA_CFLAGS:=-Wno-unused-function -I../../lib
|
|
|
|
include ../ch32v003fun/ch32v003fun/ch32v003fun.mk
|
|
|
|
|
|
chirpbuff.h : rf_data_gen
|
|
./rf_data_gen
|
|
|
|
rf_data_gen : rf_data_gen.c
|
|
gcc -o $@ $^ -lm
|
|
|
|
flash : cv_flash
|
|
clean : cv_clean
|
|
rm -rf rf_data_gen chirpbuff.dat chirpbuff.h chirpbuffinfo.h
|
|
|