From eda15081af0597c744776a4f945cb7e809fcd935 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Mon, 3 May 2021 19:40:18 -0400 Subject: [PATCH] Fix compatibility with GNU make In my attempts to make it compatible with bmake, I made it incompatible with gmake. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8b0f258..b1494ca 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ OBJS := ${SRCS:.y=.c} OBJS := ${OBJS:.c=.o} ${PROG}: ${OBJS} + @[ -f ./libopenbsd/strlcat.o ] && mv libopenbsd/*.o . || true ${CC} ${CFLAGS} *.o -o $@ ${LDFLAGS} ${LDLIBS} install: ${PROG} ${MAN} -- 2.39.2