From bd01e250b2394be0400a7e827bdfd6d8255f8e25 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 15 Sep 2022 09:46:35 +0200 Subject: [PATCH] libZRCola: Add standard default "all" make target Signed-off-by: Simon Rozman --- lib/libZRCola/build/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/libZRCola/build/Makefile b/lib/libZRCola/build/Makefile index e3f9dc3..9e482ef 100644 --- a/lib/libZRCola/build/Makefile +++ b/lib/libZRCola/build/Makefile @@ -11,7 +11,10 @@ SRCS := \ include ../../../include/props.mak -../lib/libZRCola.a : ../src/pch.h.gch $(OBJS) +.PHONY: all +all: ../lib/libZRCola.a + +../lib/libZRCola.a: ../src/pch.h.gch $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) .PHONY: clean