From 2816f9383184fe6d6ac5f3b711639bc0025cc921 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 16 Nov 2024 18:35:56 +0300 Subject: [PATCH] makefiles use fixed executable names --- nfq/BSDmakefile | 2 +- tpws/BSDmakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nfq/BSDmakefile b/nfq/BSDmakefile index ff5475e..e782a07 100644 --- a/nfq/BSDmakefile +++ b/nfq/BSDmakefile @@ -6,7 +6,7 @@ SRC_FILES = *.c crypto/*.c all: dvtws dvtws: $(SRC_FILES) - $(CC) $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS) + $(CC) $(CFLAGS) -o dvtws $(SRC_FILES) $(LDFLAGS) $(LIBS) clean: rm -f dvtws diff --git a/tpws/BSDmakefile b/tpws/BSDmakefile index e9ad901..c86e4bd 100644 --- a/tpws/BSDmakefile +++ b/tpws/BSDmakefile @@ -6,7 +6,7 @@ SRC_FILES = *.c all: tpws tpws: $(SRC_FILES) - $(CC) $(CFLAGS) -Iepoll-shim/include -o $@ $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS) + $(CC) $(CFLAGS) -Iepoll-shim/include -o tpws $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS) clean: rm -f tpws *.o