Fix linker flags for gcc / Linux

This commit is contained in:
Lassi Kortela 2023-02-25 11:43:09 +02:00
parent f1bfc3c9ce
commit 3e573a6b99
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ OBJECTS = \
all: unroff
unroff: $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $(OBJECTS)
$(CC) -o $@ $(OBJECTS) $(LDFLAGS)
.c.o:
$(CC) $(CFLAGS) $(INCLUDE) $(DEFS) -c $<