diff options
author | dzwdz | 2023-06-04 23:33:45 +0200 |
---|---|---|
committer | dzwdz | 2023-06-04 23:33:45 +0200 |
commit | c9fd9181700493823d6947af9ab7ec56c20b7f36 (patch) | |
tree | 3dcc2a3f2bb1f9daad7a0ddfd5ded002a245d61a /Makefile | |
parent | 78cb60b644538a33e0479f25393d6c861e3605f8 (diff) |
user/vterm: vendor a font (spleen) instead of downloading one on build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -122,13 +122,9 @@ out/initrd/%: sysroot/% @mkdir -p $(@D) @cp $< $@ -out/initrd/font.psf: - curl -L https://github.com/legionus/kbd/raw/master/data/consolefonts/default8x16.psfu > $@ - out/initrd.tar: $(patsubst sysroot/%,out/initrd/%,$(shell find sysroot/ -type f)) \ $(patsubst %,out/initrd/bin/amd64/%,$(USERBINS)) \ - $(shell find out/initrd/) \ - out/initrd/font.psf + $(shell find out/initrd/) @cd out/initrd; tar chf ../initrd.tar * |