summaryrefslogtreecommitdiff
path: root/tools/nitrogfx/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2020-04-15 20:20:40 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2020-04-15 20:20:40 -0400
commit09d866602ecc76fdc5e9be9e3bd1ae0b8547ff13 (patch)
tree312c771cf265503718f3e8c2eb42b92708c55f36 /tools/nitrogfx/Makefile
parentb661c7888c57280a19801b320cf7860e6555f1d3 (diff)
ROM titles
Diffstat (limited to 'tools/nitrogfx/Makefile')
-rw-r--r--tools/nitrogfx/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/nitrogfx/Makefile b/tools/nitrogfx/Makefile
new file mode 100644
index 00000000..5b75d652
--- /dev/null
+++ b/tools/nitrogfx/Makefile
@@ -0,0 +1,21 @@
+CC = gcc
+
+CFLAGS = -Wall -Wextra -Werror -Wno-sign-compare -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK
+
+LIBS = -lpng -lz
+
+SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c rl.c util.c font.c huff.c
+
+.PHONY: all clean
+
+all: nitrogfx
+ @:
+
+nitrogfx-debug: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h rl.h util.h font.h
+ $(CC) $(CFLAGS) -DDEBUG $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
+
+nitrogfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h rl.h util.h font.h
+ $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
+
+clean:
+ $(RM) nitrogfx nitrogfx.exe