28 lines
473 B
Makefile
28 lines
473 B
Makefile
ifeq ($(APP_PARAM), )
|
|
APP_PARAM:=../Makefile.param
|
|
include $(APP_PARAM)
|
|
endif
|
|
|
|
export LC_ALL=C
|
|
SHELL:=/bin/bash
|
|
|
|
CURRENT_DIR := $(shell pwd)
|
|
|
|
PKG_INSTALL_TO_ROOTFS ?= YES
|
|
PKG_NAME := lvgl_app
|
|
PKG_BIN ?= out
|
|
PKG_BUILD ?= build
|
|
PKG_TARPATH ?= $(PKG_BIN)/
|
|
|
|
all: install
|
|
|
|
install:
|
|
@cp -rfa exec/* $(PKG_TARPATH)/;
|
|
@cp -rfa script/* $(PKG_TARPATH)/;
|
|
$(call MAROC_COPY_PKG_TO_APP_OUTPUT, $(RK_APP_OUTPUT), $(PKG_BIN))
|
|
|
|
clean:
|
|
@echo "Cleaning up"
|
|
|
|
.PHONY: all install clean
|