vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit de4e46d98abd0671655eff67e80c3e44c368f6c0 parent 4b3cbc0c9967cb5cfd5a46f1f41670ceca85c97e Author: Randy Palamar <palamar@ualberta.ca> Date: Thu, 17 Aug 2023 16:12:17 -0600 build: don't use the '|' GNU extension Diffstat:
| M | Makefile | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -80,12 +80,13 @@ config.h: config.mk: @touch $@ -obj: +obj/.tstamp: mkdir obj + touch obj/.tstamp -obj/main.o: config.h | obj +obj/main.o: config.h -$(OBJ): config.mk | obj +$(OBJ): config.mk obj/.tstamp ${CC} ${CFLAGS} ${CFLAGS_VIS} ${CFLAGS_EXTRA} -o $@ -c $(@:obj/%.o=%.c) -include obj/*.d