mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
12 lines
190 B
Makefile
12 lines
190 B
Makefile
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
|