From aab7700e2bba9216a8343e8e4e0cd0096026ba1a Mon Sep 17 00:00:00 2001 From: pommicket Date: Thu, 11 Sep 2025 19:17:23 -0400 Subject: Reading lines --- examples/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'examples/Makefile') diff --git a/examples/Makefile b/examples/Makefile index f49e1ae..18bb7a5 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,3 +1,4 @@ -build/read_conf: read_conf.c ../release/libpom.a +PROFILE?=release +build/read_conf: read_conf.c ../$(PROFILE)/libpom.a @mkdir -p build - $(CC) -I.. -Wall -o $@ read_conf.c ../release/libpom.a + $(CC) -I.. -Wall -o $@ read_conf.c ../$(PROFILE)/libpom.a -- cgit v1.2.3