Skip to content

Instantly share code, notes, and snippets.

@Habbie
Created May 1, 2023 20:51
Show Gist options
  • Save Habbie/f7b84d5cf16dc10c6203fa63faaaa0b0 to your computer and use it in GitHub Desktop.
Save Habbie/f7b84d5cf16dc10c6203fa63faaaa0b0 to your computer and use it in GitHub Desktop.
.PHONY: all build build-nocache
VERSION=experimental
REVISION=1
all: build extract
build:
docker build --build-arg VERSION=$(VERSION) -t toon-gui-builder:$(VERSION)-$(REVISION) --rm --progress=plain -f Dockerfile .
build-nocache:
docker build --build-arg VERSION=$(VERSION) -t toon-gui-builder:$(VERSION)-$(REVISION) --no-cache --rm -f Dockerfile .
extract:
rm -rf build/
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm/root/sdl-example
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm//usr/local/lib/libSDL2-2.0.so.0
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm//usr/local/lib/libSDL2-2.0.so.0.2600.4
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm/lvgl-helloworld/lv_conf.h
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm/lvgl-helloworld/lv_drv_conf.h
./docker-extract.sh toon-gui-builder:$(VERSION)-$(REVISION) /tmp/deb8arm/lv_port_linux_frame_buffer/demo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment