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

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;
}