forked from pubnub/javascript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
19 lines (16 loc) · 322 Bytes
/
Copy pathMakefile
File metadata and controls
19 lines (16 loc) · 322 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SUBDIRS = web socket.io node.js modern titanium phonegap sencha webos
.PHONY: all
all:
fordirin$(SUBDIRS);do \
$(MAKE) -C $$dir; \
done
.PHONY: clean
clean:
fordirin$(SUBDIRS);do \
$(MAKE) clean -C $$dir;\
done
.PHONY: test
test:
fordirin$(SUBDIRS);do \
$(MAKE)test -C $$dir;\
done