diff options
author | pommicket <pommicket@gmail.com> | 2025-09-11 19:17:23 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-11 19:17:28 -0400 |
commit | aab7700e2bba9216a8343e8e4e0cd0096026ba1a (patch) | |
tree | b98c5cfc0589335c7aa81fc5bdafb8ca3564668b /examples/Makefile | |
parent | ec9cf4ef9b4ff2a16172e72adf5fca2a94ba3009 (diff) |
Reading lines
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
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 |