mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
11 lines
211 B
Makefile
11 lines
211 B
Makefile
export LC_ALL=C
|
|
SHELL:=/bin/bash
|
|
|
|
CURRENT_DIR ?= $(shell pwd)
|
|
|
|
all:
|
|
ifneq ($(SYSDRV_DIR_OUT_PC),)
|
|
cp -f $(CURRENT_DIR)/mkimage $(SYSDRV_DIR_OUT_PC);
|
|
cp -f $(CURRENT_DIR)/mkenvimage $(SYSDRV_DIR_OUT_PC);
|
|
endif
|