makefiles use fixed executable names

This commit is contained in:
bol-van
2024-11-16 18:35:56 +03:00
parent 8624ae1c4a
commit 2816f93831
2 changed files with 2 additions and 2 deletions

View File

@@ -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