makefiles use fixed executable names

This commit is contained in:
bol-van
2024-11-16 18:34:55 +03:00
parent ebcec6e79d
commit 8624ae1c4a
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ SRC_FILES = *.c crypto/*.c
all: nfqws
nfqws: $(SRC_FILES)
$(CC) -s $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS_LINUX)
$(CC) -s $(CFLAGS) -o nfqws $(SRC_FILES) $(LDFLAGS) $(LIBS_LINUX)
bsd: $(SRC_FILES)
$(CC) -s $(CFLAGS) $(CFLAGS_BSD) -o dvtws $(SRC_FILES) $(LDFLAGS) $(LIBS_BSD)