aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-07-05 15:17:40 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-07-05 15:17:40 +0200
commit97aababa97d4fbfe3724064cc576405d5d5de0aa (patch)
tree489e4c2f77949d52c7ad6cca8a369f2be774160e /Makefile
parente922f9459e21eb6786bfefe8fe7f057afa20baca (diff)
send JSON string on a per thread basis to a remote sink, means that no expensive locking required
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fb5a04f68..1267f6918 100644
--- a/Makefile
+++ b/Makefile
@@ -40,11 +40,11 @@ endif
RM = rm -f
-main: help main.c
- $(CC) $(CFLAGS) main.c -o $@ $(LDFLAGS) $(LIBS)
+nDPId: help nDPId.c
+ $(CC) $(CFLAGS) nDPId.c -o $@ $(LDFLAGS) $(LIBS)
clean:
- $(RM) main
+ $(RM) nDPId
help:
@echo 'CC = $(CC)'