makefiles: LDFLAGS after LIBS

This commit is contained in:
bol-van
2024-12-15 13:50:48 +03:00
parent ead91ae4f7
commit d4a72df111
6 changed files with 24 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ SRC_FILES = *.c
all: tpws
tpws: $(SRC_FILES)
$(CC) $(CFLAGS) -Iepoll-shim/include -o tpws $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
$(CC) $(CFLAGS) -Iepoll-shim/include -o tpws $(SRC_FILES) epoll-shim/src/*.c $(LIBS) $(LDFLAGS)
clean:
rm -f tpws *.o