From 21aa70d3406a5f79a4d0cc9f8bc1caf6573ec56e Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Mon, 9 Jun 2025 15:09:37 +0200 Subject: [PATCH] create binary directory before copying --- lib/grapheme.c3l/Makefile | 1 + lib/mini-qoi.c3l/Makefile | 1 + lib/schrift.c3l/Makefile | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/grapheme.c3l/Makefile b/lib/grapheme.c3l/Makefile index f753fc0..09193f1 100644 --- a/lib/grapheme.c3l/Makefile +++ b/lib/grapheme.c3l/Makefile @@ -1,3 +1,4 @@ all: make -C thirdparty/libgrapheme + mkdir -p linux-x64 cp thirdparty/libgrapheme/libgrapheme.a linux-x64/libgrapheme.a diff --git a/lib/mini-qoi.c3l/Makefile b/lib/mini-qoi.c3l/Makefile index 53230c5..323ee89 100644 --- a/lib/mini-qoi.c3l/Makefile +++ b/lib/mini-qoi.c3l/Makefile @@ -1,4 +1,5 @@ all: thirdparty/mini-qoi/mqoi.a + mkdir -p linux-x64 cp thirdparty/mini-qoi/mqoi.a linux-x64/libmqoi.a thirdparty/mini-qoi/mqoi.a: diff --git a/lib/schrift.c3l/Makefile b/lib/schrift.c3l/Makefile index ff62ec4..1de46d5 100644 --- a/lib/schrift.c3l/Makefile +++ b/lib/schrift.c3l/Makefile @@ -1,3 +1,4 @@ all: make -C thirdparty/libschrift + mkdir -p linux-x64 cp thirdparty/libschrift/libschrift.a linux-x64/libschrift.a