reorder final cc step

fixes #1
This commit is contained in:
xfnw 2023-09-16 16:43:56 -04:00
parent c1d4461f02
commit 0a59243c15
2 changed files with 1 additions and 3 deletions

View File

@ -4,7 +4,7 @@ CFLAGS ?= -DHAVE_LINUX_SECCOMP_H -D_GNU_SOURCE -O3
all: fbflut
fbflut: fbflut.o
${CC} ${CFLAGS} -lpthread -o fbflut fbflut.o
${CC} ${CFLAGS} -o fbflut fbflut.o -lpthread
clean:
rm -f fbflut.o fbflut

View File

@ -13,8 +13,6 @@ framebuffer pixelflut server in C.
- connect with netcat or something, the default port is 1234
## caveats
- on arm and places with a weird dynamic linker, you may need
to change `-lpthread` to `-pthread` in the Makefile
- this writes provided colors directly to your framebuffer,
meaning it inherits the color format. if your system is
big-endian, or if your color format is weird, you may need