You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- t ?= web
-
- all: clean translation compile
-
- compile:
- @$(CC) *.c
- @valgrind ./a.out
-
- translation:
- @mkdir bibles; curl http://api.heb12.com/translations/json/en/$(t).json > bibles/$(t).json
- @node compiler.js ./bibles/$(t).json c bibles
- @node compiler.js ./bibles/$(t).json i bibles
-
- clean:
- @rm -rf *.i *.json *.t bibles *.out
|