From a20cfdd13e0b7dae435ad54156f5033598a33db2 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Wed, 26 Jul 2023 08:15:17 +1000 Subject: [PATCH] Fixed a linker issue --- Box | 2 +- source/makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Box b/Box index 2503fcb..9cd78b3 160000 --- a/Box +++ b/Box @@ -1 +1 @@ -Subproject commit 2503fcb0177e90ba9a6fc8e84fe1831ba807897e +Subproject commit 9cd78b3637f5ae6f5565db88f136b8eb3340dada diff --git a/source/makefile b/source/makefile index 885a38f..393c0a5 100644 --- a/source/makefile +++ b/source/makefile @@ -2,7 +2,7 @@ CC=gcc IDIR+=. ../Box/Toy/source ../Box/source CFLAGS+=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable -LIBS+=-ltoy -lbox -lSDL2_image -lSDL2_mixer -lSDL2_ttf -lSDL2main -lSDL2 +LIBS+=-lbox -ltoy -lSDL2_image -lSDL2_mixer -lSDL2_ttf -lSDL2main -lSDL2 ODIR = obj SRC = $(wildcard *.c)