aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrow Savcik <krow@savcik.xyz>2024-01-21 01:28:01 +0200
committerKrow Savcik <krow@savcik.xyz>2024-01-21 01:28:01 +0200
commit009a890482edfb2247da1d69b86f4d193699e3cb (patch)
treeb4c6c2e5e6314a74515d9a7184a240a6d78b2cbc
parent5cb6ff3c7186cbf48247e13c498a78f92b166d27 (diff)
fix linking flags in Makefile
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b3eccec..e9b90c1 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ TOBJ = ui.o canvas.o user.o palette.o tools.o debug.o
OBJ = $(addprefix build/, ${TOBJ})
build: prep config.h ${OBJ} src/cdraw.c
- ${CC} ${CFLAGS} ${LIBS} ${OBJ} src/cdraw.c -o build/cdraw
+ ${CC} ${CFLAGS} ${OBJ} src/cdraw.c -o build/cdraw ${LIBS}
config.h:
cp config.def.h config.h