summaryrefslogtreecommitdiff
path: root/tools/rsfont
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-08-01 21:04:28 -0400
committerGitHub <noreply@github.com>2019-08-01 21:04:28 -0400
commit201418cd4d3e0c96b8f7f99e6242f2a08b5041b7 (patch)
tree57cbe7905db69e8f7e88327c0d665b49f2dd67fb /tools/rsfont
parent00cf527c16d02fc912666d97a49dc7fedf996225 (diff)
parent6032159d1bc099d4ed112e5e387ebba1d35fe6a9 (diff)
Merge pull request #87 from PikalaxALT/title_screen
Title screen
Diffstat (limited to 'tools/rsfont')
-rw-r--r--tools/rsfont/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/rsfont/Makefile b/tools/rsfont/Makefile
index 582be7b88..abe1cab51 100644
--- a/tools/rsfont/Makefile
+++ b/tools/rsfont/Makefile
@@ -6,7 +6,10 @@ LIBS = -lpng -lz
SRCS = main.c convert_png.c util.c font.c
-.PHONY: clean
+.PHONY: all clean
+
+all: rsfont
+ @:
rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)