12 lines
262 B
Makefile
12 lines
262 B
Makefile
TARGET = lenet
|
|
|
|
CFLAGS += -O3 -g
|
|
|
|
C_SRCS := $(wildcard ./*.c )
|
|
|
|
OBJDIR = obj
|
|
COMMON_DIR = ../../bsp
|
|
GCC_DIR=../../../toolchains/loongson-gnu-toolchain-8.3-x86_64-loongarch32r-linux-gnusf-v2.0
|
|
PICOLIBC_DIR=../../../toolchains/picolibc
|
|
include ../../bsp/common.mk
|