mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-01 09:30:09 +01:00
Getting an external library for SHA1 is a mess, so just use our own, regrettably. Public domain implementation.
23 lines
341 B
Makefile
23 lines
341 B
Makefile
noinst_LTLIBRARIES = librender.la
|
|
|
|
AM_CFLAGS = $(DIX_CFLAGS)
|
|
|
|
librender_la_SOURCES = \
|
|
animcur.c \
|
|
filter.c \
|
|
glyph.c \
|
|
miindex.c \
|
|
mipict.c \
|
|
mirect.c \
|
|
mitrap.c \
|
|
mitri.c \
|
|
picture.c \
|
|
render.c \
|
|
sha1.c \
|
|
renderedge.c
|
|
|
|
if XORG
|
|
sdk_HEADERS = picture.h mipict.h glyphstr.h picturestr.h renderedge.h
|
|
endif
|
|
|
|
EXTRA_DIST = sha1.h
|