Compare commits

...

2 Commits

Author SHA1 Message Date
Rampoina c597cfdffc egrep -> grep -E 2023-01-04 02:27:41 +01:00
Rampoina 993bc8ee53 Fix makefile to pass flags to the CBQN makefile 2023-01-04 02:21:33 +01:00
2 changed files with 2 additions and 3 deletions

1
CBQN

@ -1 +0,0 @@
Subproject commit 982a54d98a4d2a37f40d0cc711b0ad5e396613e3

View File

@ -1,12 +1,12 @@
.PHONY: check-and-reinit-submodules all
all: .check-and-reinit-submodules
@${MAKE} -C CBQN/ MAKEFLAGS=
@${MAKE} -C CBQN/
run: 2048.bqn
./CBQN/BQN 2048.bqn
.check-and-reinit-submodules:
@if git submodule status | egrep -q '^[-]|^[+]' ; then \
@if git submodule status | grep -Eq '^[-]|^[+]' ; then \
echo "INFO: reinitializing git submodules"; \
git submodule update --init; \
fi