Built SDL2_image and _mixer static
This commit is contained in:
83
libsdl2_image/Makefile.am
Normal file
83
libsdl2_image/Makefile.am
Normal file
@ -0,0 +1,83 @@
|
||||
# Makefile.am for the SDL sample image loading library and viewer
|
||||
|
||||
lib_LTLIBRARIES = libSDL2_image.la
|
||||
|
||||
libSDL2_imageincludedir = $(includedir)/SDL2
|
||||
libSDL2_imageinclude_HEADERS = \
|
||||
SDL_image.h
|
||||
|
||||
if USE_IMAGEIO
|
||||
IMAGEIO_SOURCE = IMG_ImageIO.m
|
||||
endif
|
||||
|
||||
libSDL2_image_la_SOURCES = \
|
||||
IMG.c \
|
||||
IMG_bmp.c \
|
||||
IMG_gif.c \
|
||||
IMG_jpg.c \
|
||||
IMG_lbm.c \
|
||||
IMG_pcx.c \
|
||||
IMG_png.c \
|
||||
IMG_pnm.c \
|
||||
IMG_svg.c \
|
||||
IMG_tga.c \
|
||||
IMG_tif.c \
|
||||
IMG_xcf.c \
|
||||
IMG_xpm.c \
|
||||
IMG_xv.c \
|
||||
IMG_webp.c \
|
||||
IMG_WIC.c \
|
||||
$(IMAGEIO_SOURCE) \
|
||||
miniz.h \
|
||||
nanosvg.h \
|
||||
nanosvgrast.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
Android.mk \
|
||||
debian \
|
||||
external \
|
||||
version.rc \
|
||||
VisualC \
|
||||
VisualCE \
|
||||
VisualC-WinRT \
|
||||
Xcode \
|
||||
Xcode-iOS \
|
||||
IMG_xxx.c \
|
||||
$(srcdir)/*.m \
|
||||
SDL2_image.spec \
|
||||
gcc-fat.sh \
|
||||
autogen.sh \
|
||||
$(srcdir)/*.txt
|
||||
|
||||
if USE_VERSION_RC
|
||||
libSDL2_image_la_LDFLAGS = \
|
||||
-no-undefined \
|
||||
-release $(LT_RELEASE) \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -Wl,version.o
|
||||
libSDL2_image_la_LIBADD = $(IMG_LIBS)
|
||||
libSDL2_image_la_DEPENDENCIES = version.o
|
||||
else
|
||||
libSDL2_image_la_LDFLAGS = \
|
||||
-no-undefined \
|
||||
-release $(LT_RELEASE) \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
||||
libSDL2_image_la_LIBADD = $(IMG_LIBS)
|
||||
endif
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = SDL2_image.pc
|
||||
|
||||
%.o : %.rc
|
||||
$(WINDRES) $< $@
|
||||
|
||||
noinst_PROGRAMS = showimage
|
||||
|
||||
showimage_LDADD = libSDL2_image.la
|
||||
|
||||
# Rule to build tar-gzipped distribution package
|
||||
$(PACKAGE)-$(VERSION).tar.gz: distcheck
|
||||
|
||||
# Rule to build RPM distribution package
|
||||
rpm: $(PACKAGE)-$(VERSION).tar.gz
|
||||
rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
|
||||
|
Reference in New Issue
Block a user