1
1
mirror of synced 2025-02-17 10:48:36 +01:00

Fix gh actions

This commit is contained in:
BroGamer 2022-08-15 19:32:55 +12:00
parent 8dfbf5c2da
commit 9759e46dd1

View File

@ -31,13 +31,13 @@ ${TARGET}/%.o: %.c
.PHONY: SDL
SDL:
@mkdir -p SDL/${SDL_TARGET}
@#cd SDL/${SDL_TARGET} && ../configure --build=x86_64-linux-gnu --host=${SDL_TARGET} --disable-sdl2-config --disable-shared --enable-assertions=release --enable-directx --enable-haptic
@cd SDL/${SDL_TARGET} && ../configure --build=x86_64-linux-gnu --host=${SDL_TARGET} --disable-sdl2-config --disable-shared --enable-assertions=release --enable-directx --enable-haptic
@make -s -C SDL/${SDL_TARGET}
.PHONY: ${OUT}
${OUT}: dirs ${DEPS} ${OBJ}
@echo LINK $@
@bear -- ${CC} ${CFLAGS} -o ${TARGET}/$@.dll ${OBJ} ${LDFLAGS} ${LIBS}
@${CC} ${CFLAGS} -o ${TARGET}/$@.dll ${OBJ} ${LDFLAGS} ${LIBS}
.PHONY: fmt
fmt: