blob: 75e65ed60f4a4e5eb749a2c03fc57c29151691db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Meta-driver which combines whichever software rasterizers have been
# built into a single convenience library.
TOP = ../../../..
include $(TOP)/configs/current
LIBNAME = noop
C_SOURCES = \
noop_pipe.c \
noop_state.c
include ../../Makefile.template
# FIXME: Remove when this driver is converted to automake.
all: default
|