You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
339 B
Makefile
14 lines
339 B
Makefile
SDL_IMAGE_PORT_DIR := $(call select_from_ports,sdl_image)
|
|
|
|
SRC_C = $(notdir $(wildcard $(SDL_IMAGE_PORT_DIR)/src/lib/sdl_image/IMG*.c))
|
|
|
|
LIBS += libc libm sdl jpeg libpng zlib
|
|
|
|
SUPPORTED_FORMATS = PNG JPG TGA PNM XPM
|
|
|
|
CC_OPT += $(addprefix -DLOAD_,$(SUPPORTED_FORMATS))
|
|
|
|
vpath %.c $(SDL_IMAGE_PORT_DIR)/src/lib/sdl_image
|
|
|
|
SHARED_LIB = yes
|