From dca7a781545c1b16af76bbbcbd45f6d735c02587 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 4 May 2023 23:03:46 +0100 Subject: Make the stb_image implementation a C module --- Makefile | 9 ++++++--- stb_image.c | 3 +++ tr8as.c | 2 -- 3 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 stb_image.c diff --git a/Makefile b/Makefile index 2bc7a3b..c83ded3 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,15 @@ all: tr8as tr8vm tr8vm: tr8vm.c vm.o vm.h $(CC) -std=c99 $(CFLAGS) `$(SDL2_CONFIG) --cflags` $< vm.o `$(SDL2_CONFIG) --libs` $(LIBS) -o $@ -tr8as: tr8as.c - $(CC) -std=c99 $(CFLAGS) -DDO_MAIN $< -o $@ -lm +tr8as: tr8as.c stb_image.o + $(CC) -std=c99 $(CFLAGS) -DDO_MAIN $< stb_image.o -o $@ -lm vm.o: vm.c vm.h $(CC) -c -std=c89 $(CFLAGS) $< -o $@ +stb_image.o: stb_image.c stb_image.h + $(CC) -c -std=c99 $(CFLAGS) $< -o $@ + example: example.tr8 tr8vm ./tr8vm example.tr8 @@ -25,7 +28,7 @@ example.tr8: example.asm tr8as ./tr8as example.asm example.tr8 clean: - rm -f tr8as tr8vm example.tr8 + rm -f tr8as tr8vm example.tr8 *.o .PHONY: clean all example diff --git a/stb_image.c b/stb_image.c new file mode 100644 index 0000000..f81a87a --- /dev/null +++ b/stb_image.c @@ -0,0 +1,3 @@ +#define STB_IMAGE_IMPLEMENTATION +#define STBI_ONLY_PNG +#include "stb_image.h" diff --git a/tr8as.c b/tr8as.c index ab471e5..a02f696 100644 --- a/tr8as.c +++ b/tr8as.c @@ -29,8 +29,6 @@ #include #include -#define STB_IMAGE_IMPLEMENTATION -#define STBI_ONLY_PNG #include "stb_image.h" #define MAX_LINE 1024 -- cgit v1.2.3