1
0
mirror of synced 2024-11-23 22:51:02 +01:00
TaikoArcadeLoader/Makefile

67 lines
1.8 KiB
Makefile
Raw Normal View History

2022-06-19 19:36:27 +02:00
OUT = TAL
2023-09-09 11:01:01 +02:00
CC = x86_64-w64-mingw32-gcc
TARGET = x86_64-pc-windows-gnu
2022-08-18 16:34:43 +02:00
SRC = src/dllmain.c src/helpers.c src/poll.c src/boilerplate.c tomlc99/toml.c minhook/src/buffer.c minhook/src/hook.c minhook/src/trampoline.c minhook/src/hde/hde32.c minhook/src/hde/hde64.c
OBJ = ${addprefix ${TARGET}/,${SRC:.c=.o}}
2023-09-09 11:01:01 +02:00
CFLAGS = -std=c99 -Iminhook/include -ISDL/include -ISDL/build/include -Itomlc99 -Wall -Ofast -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=_WIN32_WINNT_WIN7
LDFLAGS = -shared -static -static-libgcc -s
LIBS = SDL/build/libSDL3.a SDL/build/libSDL3_main.a -lmingw32 -luuid -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lsetupapi -lversion
2022-06-19 19:36:27 +02:00
DEPS = SDL
2023-09-09 11:01:01 +02:00
all: options ${OUT} plugins
2022-06-19 19:36:27 +02:00
.PHONY: dirs
dirs:
@mkdir -p ${TARGET}/src
@mkdir -p ${TARGET}/minhook/src/hde
@mkdir -p ${TARGET}/tomlc99
.PHONY: options
options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
${TARGET}/%.o: %.c
@echo BUILD $@
@${CC} -c ${CFLAGS} $< -o $@
2022-08-15 15:57:15 +02:00
2022-06-22 02:47:25 +02:00
.PHONY: SDL
SDL:
2023-09-09 11:01:01 +02:00
@cd SDL && cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=build-scripts/cmake-toolchain-mingw64-x86_64.cmake && cmake --build build
2022-06-22 02:47:25 +02:00
2022-06-19 19:36:27 +02:00
.PHONY: ${OUT}
${OUT}: dirs ${DEPS} ${OBJ}
@echo LINK $@
2022-08-18 16:34:43 +02:00
@${CC} ${CFLAGS} -o ${TARGET}/$@.dll ${OBJ} ${LDFLAGS} ${LIBS}
2022-06-19 19:36:27 +02:00
.PHONY: fmt
fmt:
@cd src && clang-format -i *.h *.c -style=file
2022-10-12 22:09:13 +02:00
@cd plugins/8.18 && clang-format -i *.c -style=file
@cd plugins/amauth && clang-format -i *.c -style=file
2022-06-19 19:36:27 +02:00
.PHONY: clean
clean:
rm -rf ${TARGET}
2022-10-12 22:09:13 +02:00
.PHONY: plugins
plugins:
2022-10-16 18:38:40 +02:00
make -C plugins/8.18
make -C plugins/amauth
2022-10-12 22:17:37 +02:00
strip ${TARGET}/*.dll
2022-06-22 02:47:25 +02:00
2022-06-22 02:49:31 +02:00
.PHONY: dist-no-7z
2022-10-12 22:09:13 +02:00
dist-no-7z: options ${OUT} plugins
2022-06-22 02:47:25 +02:00
mkdir -p out/plugins
cp ${TARGET}/${OUT}.dll out/
2022-06-22 03:36:55 +02:00
mv out/${OUT}.dll out/bnusio.dll
2022-10-12 22:12:06 +02:00
cp ${TARGET}/patches.*.dll out/plugins
2022-09-16 00:03:23 +02:00
cp ${TARGET}/amauth.dll out/plugins
2022-08-18 16:09:45 +02:00
cp -r dist/* out/
2022-06-22 02:49:31 +02:00
.PHONY: dist
dist: dist-no-7z
2022-06-22 02:47:25 +02:00
cd out && 7z a -t7z ../${OUT}.7z .
rm -rf out