summaryrefslogtreecommitdiff
path: root/Makefile
blob: 755c091ed17781af5096a00d4b5418d0100adce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC="gcc"

all: publisher client

publisher:
	echo "Building publisher..."
	$(MAKE) -C src/publisher/ CC=$(CC) OUT=$(PWD)

client:
	echo "Building client..."
	$(MAKE) -C src/client/ CC=$(CC) OUT=$(PWD)


clean:
	$(MAKE) clean -C src/publisher/ CC=$(CC) OUT=$(PWD)
	$(MAKE) clean -C src/client/ CC=$(CC) OUT=$(PWD)	

.PHONY: clean