Skip to content

Commit

Permalink
Merge pull request lvgl#9 from astrolabe-coop/sandbox/rzr/review/master
Browse files Browse the repository at this point in the history
build: Add install rule
  • Loading branch information
microwavesafe authored Sep 7, 2021
2 parents 3b3c0ba + 6de75e6 commit 1010181
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# WARNING: relies on invocation setting current working directory to Makefile location
# This is done in .vscode/task.json
#
PROJECT ?= lvgl-sdl
MAKEFLAGS := -j $(shell nproc)
SRC_EXT := c
OBJ_EXT := o
Expand Down Expand Up @@ -51,3 +52,7 @@ default: $(OBJECTS)

clean:
rm -rf $(WORKING_DIR)

install: ${BIN}
install -d ${DESTDIR}/usr/lib/${PROJECT}/bin
install $< ${DESTDIR}/usr/lib/${PROJECT}/bin/

0 comments on commit 1010181

Please sign in to comment.