diff options
author | neonloop | 2021-03-06 00:36:18 +0000 |
---|---|---|
committer | neonloop | 2021-03-06 00:36:18 +0000 |
commit | 9428d4c280242235a952cbeb985f9af79f6306fe (patch) | |
tree | db2fd1dec8e5372039bac71a6ffbbdc8bcbd08bb /Makefile | |
parent | d2a012a9ba5e2b528f9912be29ac3e5c456e6071 (diff) | |
download | trimui-toolchain-9428d4c280242235a952cbeb985f9af79f6306fe.tar.gz trimui-toolchain-9428d4c280242235a952cbeb985f9af79f6306fe.tar.bz2 trimui-toolchain-9428d4c280242235a952cbeb985f9af79f6306fe.zip |
Adds more libraries to the toolchain sysroot
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,10 +1,11 @@ WORKSPACE_DIR := $(shell pwd)/workspace +CONFIG_FILES := $(shell find trimui_config -type f) shell: .build docker run -it --rm -v $(WORKSPACE_DIR):/home/trimui/workspace trimui-toolchain /bin/bash .PHONY: shell -.build: Dockerfile defconfig *.patch +.build: Dockerfile extract_rootfs.sh *.patch $(CONFIG_FILES) docker build -t trimui-toolchain . touch .build |