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

@@ -9,7 +9,7 @@ SRC_FILES = *.c
all: mdig
mdig: $(SRC_FILES)
$(CC) -s $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS)
$(CC) -s $(CFLAGS) -o mdig $(SRC_FILES) $(LDFLAGS) $(LIBS)
bsd: $(SRC_FILES)
$(CC) -s $(CFLAGS) $(CFLAGS_BSD) -o mdig $(SRC_FILES) $(LDFLAGS) $(LIBS)