diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-07-14 18:26:31 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-07-14 18:26:31 +0200 |
| commit | 4f9aced0c34d9554fc61f5072d8536133455b941 (patch) | |
| tree | 79d2d8a2d619aa18b9d26b9f20d2f427833321a9 /src/publisher/Makefile | |
| parent | bc84e55c7909dfd4870d9d5174447c1b805ae2fb (diff) | |
Minor changes
Diffstat (limited to 'src/publisher/Makefile')
| -rw-r--r-- | src/publisher/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/publisher/Makefile b/src/publisher/Makefile new file mode 100644 index 0000000..605e667 --- /dev/null +++ b/src/publisher/Makefile @@ -0,0 +1,10 @@ +EXEC=publisher +CFLAGS=-lzmq + +all: main.c + $(CC) $^ -o $(OUT)/$(EXEC) $(CFLAGS) + +clean: + rm -f $(OUT)/$(EXEC) + +.PHONY: clean |
