Minor changes

This commit is contained in:
Loic Guegan 2023-07-14 18:26:31 +02:00
parent bc84e55c79
commit 4f9aced0c3
3 changed files with 29 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,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

10
src/publisher/Makefile Normal file
View file

@ -0,0 +1,10 @@
EXEC=publisher
CFLAGS=-lzmq
all: main.c
$(CC) $^ -o $(OUT)/$(EXEC) $(CFLAGS)
clean:
rm -f $(OUT)/$(EXEC)
.PHONY: clean

7
src/publisher/main.c Normal file
View file

@ -0,0 +1,7 @@
int main(){
return 0;
}