mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-19 04:09:45 +00:00
Minor changes
This commit is contained in:
parent
2e02fd6b93
commit
6172ad7092
7 changed files with 22 additions and 4 deletions
4
Makefile
4
Makefile
|
@ -1,13 +1,17 @@
|
|||
PUBLISHER_PORT=5556
|
||||
CC="gcc"
|
||||
CFLAGS=
|
||||
|
||||
all: publisher client
|
||||
|
||||
publisher:
|
||||
echo "Building publisher..."
|
||||
CFLAGS+=-DPUBLISHER_PORT=$(PUBLISHER_PORT) \
|
||||
$(MAKE) -C src/publisher/ CC=$(CC) OUT=$(PWD)
|
||||
|
||||
client:
|
||||
echo "Building client..."
|
||||
CFLAGS+=-DPUBLISHER_PORT=$(PUBLISHER_PORT) \
|
||||
$(MAKE) -C src/client/ CC=$(CC) OUT=$(PWD)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue