mirror of https://github.com/zeldaret/tmc.git
moved gbagfx
This commit is contained in:
parent
2579dbc8fb
commit
d46eff5071
|
|
@ -1 +0,0 @@
|
|||
gbagfx
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
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: gbagfx
|
||||
@:
|
||||
|
||||
gbagfx-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)
|
||||
|
||||
gbagfx: $(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) gbagfx gbagfx.exe
|
||||
|
|
@ -3,3 +3,4 @@ add_subdirectory(aif2pcm)
|
|||
add_subdirectory(asset_processor)
|
||||
add_subdirectory(bin2c)
|
||||
add_subdirectory(gbafix)
|
||||
add_subdirectory(gbagfx)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
file(GLOB_RECURSE sources *.c)
|
||||
|
||||
# TODO Makefile had a debug build with -DDEBUG
|
||||
add_executable(gbagfx ${sources})
|
||||
target_include_directories(gbagfx PRIVATE .)
|
||||
# TODO properly handle these dependencies
|
||||
target_link_libraries(gbagfx PRIVATE png z)
|
||||
|
||||
install(TARGETS gbagfx RUNTIME DESTINATION bin)
|
||||
Loading…
Reference in New Issue