forked from compiler-explorer/compiler-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (35 loc) · 951 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
ifeq "" "$(shell which npm)"
default:
@echo "Please install node.js"
@echo "Visit http://nodejs.org/ for more details"
@echo "On Ubuntu/Debian try: sudo apt-get install nodejs npm"
exit 1
else
NODE:= $(shell which node || which nodejs)
default: run
endif
.PHONY: clean run test run-amazon c-preload optional-d-support prereqs
prereqs: optional-d-support node_modules c-preload
ifeq "" "$(shell which gdc)"
optional-d-support:
@echo "D language support disabled"
else
optional-d-support:
$(MAKE) -C d
endif
NODE_MODULES=.npm-updated
$(NODE_MODULES): package.json
npm install
@touch $@
LANG:=C++
node_modules: $(NODE_MODULES)
test:
(cd test; $(NODE) test.js)
$(MAKE) -C c-preload test
@echo Tests pass
clean:
rm -rf node_modules .npm-updated
run: node_modules optional-d-support c-preload
$(NODE) ./node_modules/.bin/supervisor -e 'js|node|properties' --exec $(NODE) -- ./app.js --language $(LANG)
c-preload:
$(MAKE) -C c-preload