1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-18 20:10:29 +01:00

wrlib: Renamed image format related files for clarity

This patch makes all files appear together when listing files and
it is more clear about their function.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2013-11-08 18:50:03 +01:00
committed by Carlos R. Mafra
parent f619546af9
commit c3a132215d
8 changed files with 7 additions and 7 deletions

View File

@@ -36,28 +36,28 @@ libwraster_la_SOURCES = \
convolve.c \
save_xpm.c \
xutil.c \
ppm.c
load_ppm.c
if USE_GIF
libwraster_la_SOURCES += gif.c
libwraster_la_SOURCES += load_gif.c
endif
if USE_JPEG
libwraster_la_SOURCES += jpeg.c
libwraster_la_SOURCES += load_jpeg.c
endif
if USE_PNG
libwraster_la_SOURCES += png.c
libwraster_la_SOURCES += load_png.c
endif
if USE_TIFF
libwraster_la_SOURCES += tiff.c
libwraster_la_SOURCES += load_tiff.c
endif
if USE_XPM
libwraster_la_SOURCES += xpm.c
libwraster_la_SOURCES += load_xpm.c
else
libwraster_la_SOURCES += nxpm.c
libwraster_la_SOURCES += load_xpm_normalized.c
endif
LTCOMPILE2=`echo $(LTCOMPILE) | sed -e s/-fomit-frame-pointer//`