From d9454c1ef1b140c21e096de80a98ce0b3e811681 Mon Sep 17 00:00:00 2001 From: Dylan Muller Date: Sat, 16 Sep 2023 12:34:28 +0200 Subject: gsctool: core: initial commit Initial commit of gsctool. A utility to inject custom GSC scripts for Call of Duty Black Ops 1 (PC). --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..598cda1 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CC=tcc.exe +CFLAGS=-m32 -shared -lmsvcrt +CFILES_GSC=gsctool.c lib/cdl86/cdl.c lib/miniz/miniz.c + +all: gsctool + +gsctool: gsctool.c + $(CC) $(CFLAGS) $(CFILES_GSC) -o gsctool.dll + +.PHONY: clean +clean: + rm -f gsctool.dll + -- cgit v1.2.3-70-g09d2