lib: fix include directives, alphabetize sources

Headers are found under top_srcdir/...
Headers are CPP flags, not C Flags

Acked-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
This commit is contained in:
Gaetan Nadon 2012-01-05 18:44:49 -05:00
parent 3ceb75828c
commit 65b7c72335

View File

@ -1,28 +1,25 @@
NULL=#
AM_CFLAGS = $(CWARNFLAGS) -I$(srcdir)/..
libintel_tools_la_SOURCES = \
intel_batchbuffer.h \
intel_batchbuffer.c \
intel_chipset.h \
intel_gpu_tools.h \
intel_mmio.c \
intel_pci.c \
intel_reg.h \
i915_3d.h \
i915_reg.h \
i830_reg.h \
intel_reg_map.c \
intel_drm.c \
instdone.c \
instdone.h \
drmtest.h \
drmtest.c \
debug.h \
$(NULL)
AM_CFLAGS += $(DRM_CFLAGS)
noinst_LTLIBRARIES = libintel_tools.la
AM_CPPFLAGS = -I$(top_srcdir)
AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS)
libintel_tools_la_SOURCES = \
debug.h \
drmtest.c \
drmtest.h \
i830_reg.h \
i915_3d.h \
i915_reg.h \
instdone.c \
instdone.h \
intel_batchbuffer.c \
intel_batchbuffer.h \
intel_chipset.h \
intel_drm.c \
intel_gpu_tools.h \
intel_mmio.c \
intel_pci.c \
intel_reg.h \
intel_reg_map.c