You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
303 B
Makefile
13 lines
303 B
Makefile
.PHONY: check-and-reinit-submodules all
|
|
all: .check-and-reinit-submodules
|
|
@${MAKE} -C CBQN/
|
|
|
|
run: 2048.bqn
|
|
./CBQN/BQN 2048.bqn
|
|
|
|
.check-and-reinit-submodules:
|
|
@if git submodule status | grep -Eq '^[-]|^[+]' ; then \
|
|
echo "INFO: reinitializing git submodules"; \
|
|
git submodule update --init; \
|
|
fi
|