Makefile fix

This commit is contained in:
mibi88 2022-10-16 19:30:50 +02:00
parent 86a52ed62f
commit b6021eebc0
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ LINK = ../common/*.o
all: $(PROG)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) -o $(PROG) $(OBJS) $(LINK)
$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(OBJS) $(LINK) $(LDLIBS)
.c.o:
$(CC) $(CFLAGS) -c $*.c