From 7fe60435bce6595a9c58a9bfd8244d74b5320e96 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 15 Jan 2013 08:46:13 +0100 Subject: Import DirectFB141_2k11R3_beta5 --- Source/DirectFB/gfxdrivers/sh772x/Makefile.am | 80 +++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100755 Source/DirectFB/gfxdrivers/sh772x/Makefile.am (limited to 'Source/DirectFB/gfxdrivers/sh772x/Makefile.am') diff --git a/Source/DirectFB/gfxdrivers/sh772x/Makefile.am b/Source/DirectFB/gfxdrivers/sh772x/Makefile.am new file mode 100755 index 0000000..462aa03 --- /dev/null +++ b/Source/DirectFB/gfxdrivers/sh772x/Makefile.am @@ -0,0 +1,80 @@ +## Makefile.am for DirectFB/src/core/gfxcards/sh7722 + +EXTRA_DIST = \ + directfbrc.sh7722 \ + directfbrc.sh7723 \ + Makefile.kernel \ + README.sh7722 \ + kernel-module/sh772x_driver.c \ + kernel-module/sh772x_gfx.h \ + kernel-module/sh7722.c \ + kernel-module/sh7722.h \ + kernel-module/sh7723.c \ + kernel-module/sh7723.h \ + kernel-module/Makefile + +INCLUDES = \ + -I$(top_srcdir)/include \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/systems \ + -I$(srcdir)/kernel-module + + +lib_LTLIBRARIES = libsh7722_jpeg.la + +libsh7722_jpeg_la_SOURCES = \ + sh7722_jpeglib.c \ + sh7722_jpeglib.h + + +bin_PROGRAMS = sh7722_jpegtool + +sh7722_jpegtool_SOURCES = \ + sh7722_jpegtool.c + +sh7722_jpegtool_LDADD = \ + $(top_builddir)/src/libdirectfb.la \ + libsh7722_jpeg.la + + +sh7722_LTLIBRARIES = libdirectfb_sh7722.la + +if BUILD_STATIC +sh7722_DATA = $(sh7722_LTLIBRARIES:.la=.o) +endif + +sh7722dir = $(MODULEDIR)/gfxdrivers + +libdirectfb_sh7722_la_SOURCES = \ + sh7722.c \ + sh7722.h \ + sh7722_blt.c \ + sh7722_blt.h \ + sh7723_blt.c \ + sh7723_blt.h \ + sh7722_jpeg.c \ + sh7722_layer.c \ + sh7722_layer.h \ + sh7722_lcd.c \ + sh7722_lcd.h \ + sh7722_multi.c \ + sh7722_multi.h \ + sh7722_regs.h \ + sh7722_screen.c \ + sh7722_screen.h \ + sh7722_types.h + +libdirectfb_sh7722_la_LDFLAGS = \ + -module \ + -avoid-version \ + $(DFB_LDFLAGS) + +libdirectfb_sh7722_la_LIBADD = \ + $(top_builddir)/src/libdirectfb.la \ + libsh7722_jpeg.la + + +include $(top_srcdir)/rules/libobject.make + -- cgit