aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: a774e0b52550b7869a18872011d4ab1973408840 (plain)
1
2
3
4
5
6
7
8
9
10
all:
	mkdir -p build
	cd gtest; $(MAKE) all
	cd test; $(MAKE) all
	cd examples; $(MAKE) all

clean: 
	cd gtest; $(MAKE) clean
	cd test; $(MAKE) clean
	cd examples; $(MAKE) clean