summaryrefslogtreecommitdiff
path: root/Makefile
blob: 17610ca6650c13dee7596906eb89468672c81e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CC="gcc"

all: publisher

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

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

.PHONY: clean