diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-05-04 23:03:46 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-05-04 23:03:46 +0100 |
commit | dca7a781545c1b16af76bbbcbd45f6d735c02587 (patch) | |
tree | af6f8fff657c84f09028c7a351ede00f30305fc9 /Makefile | |
parent | 3f55bafdeddd9893760c2e165756c7bbc575b027 (diff) | |
download | tr8vm-dca7a781545c1b16af76bbbcbd45f6d735c02587.tar.gz tr8vm-dca7a781545c1b16af76bbbcbd45f6d735c02587.zip |
Make the stb_image implementation a C module
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |