mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-07-01 10:37:40 +00: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
|