vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit f4220631d8b8d3b2fbd6ccce57f897ae44d2d03d parent 312cbfa49a1808e88528129e5b086708e883302a Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me> Date: Sun, 10 May 2020 23:00:36 +0200 core/Makefile: Respect $CC and $CFLAGS Related: https://bugs.gentoo.org/722014 Diffstat:
| M | core/Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/Makefile b/core/Makefile @@ -12,7 +12,7 @@ test: $(ALL) config.h: @echo Generating ccan configuration header - @${CC} ccan-config.c -o ccan-config && ./ccan-config > config.h + @${CC} ccan-config.c -o ccan-config && ./ccan-config "${CC}" ${CFLAGS} > config.h text-test: config.h text-test.c ../../text.c ../../text-common.c ../../text-io.c ../../text-iterator.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c @echo Compiling $@ binary