libZRCola: Add standard default "all" make target

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2022-09-15 09:46:35 +02:00
parent 8bb1049cf0
commit bd01e250b2

View File

@ -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