summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2012-01-05 18:44:49 -0500
committerGaetan Nadon <memsize@videotron.ca>2012-01-12 09:13:08 -0500
commit65b7c72335572fec7f1fd78de840148c91b1fde2 (patch)
treed696a1ce55a0213e366d571be1cfaf9735bfb35e /lib
parent3ceb75828ccf813005a7eb4c3924c9ca56c01aa1 (diff)
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>
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am45
1 files changed, 21 insertions, 24 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index ca93410..9607fcb 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -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)
-noinst_LTLIBRARIES = libintel_tools.la
+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