aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/console/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/video/console/Makefile
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/video/console/Makefile')
-rw-r--r--drivers/video/console/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/drivers/video/console/Makefile b/drivers/video/console/Makefile
new file mode 100644
index 000000000000..33516447f9f2
--- /dev/null
+++ b/drivers/video/console/Makefile
@@ -0,0 +1,43 @@
1# Makefile for the Linux graphics to console drivers.
2# 5 Aug 1999, James Simmons, <mailto:jsimmons@users.sf.net>
3# Rewritten to use lists instead of if-statements.
4
5# Font handling
6font-objs := fonts.o
7
8font-objs-$(CONFIG_FONT_SUN8x16) += font_sun8x16.o
9font-objs-$(CONFIG_FONT_SUN12x22) += font_sun12x22.o
10font-objs-$(CONFIG_FONT_8x8) += font_8x8.o
11font-objs-$(CONFIG_FONT_8x16) += font_8x16.o
12font-objs-$(CONFIG_FONT_6x11) += font_6x11.o
13font-objs-$(CONFIG_FONT_PEARL_8x8) += font_pearl_8x8.o
14font-objs-$(CONFIG_FONT_ACORN_8x8) += font_acorn_8x8.o
15font-objs-$(CONFIG_FONT_MINI_4x6) += font_mini_4x6.o
16
17font-objs += $(font-objs-y)
18
19# Each configuration option enables a list of files.
20
21obj-$(CONFIG_DUMMY_CONSOLE) += dummycon.o
22obj-$(CONFIG_SGI_NEWPORT_CONSOLE) += newport_con.o font.o
23obj-$(CONFIG_PROM_CONSOLE) += promcon.o promcon_tbl.o
24obj-$(CONFIG_STI_CONSOLE) += sticon.o sticore.o font.o
25obj-$(CONFIG_VGA_CONSOLE) += vgacon.o
26obj-$(CONFIG_MDA_CONSOLE) += mdacon.o
27obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon.o bitblit.o font.o
28ifeq ($(CONFIG_FB_TILEBLITTING),y)
29obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += tileblit.o
30endif
31
32obj-$(CONFIG_FB_STI) += sticore.o font.o
33
34# Targets that kbuild needs to know about
35targets := promcon_tbl.c
36
37quiet_cmd_conmakehash = CNMKHSH $@
38 cmd_conmakehash = scripts/conmakehash $< | \
39 sed -e '/\#include <[^>]*>/p' -e 's/types/init/' \
40 -e 's/dfont\(_uni.*\]\)/promfont\1 __initdata/' > $@
41
42$(obj)/promcon_tbl.c: $(src)/prom.uni
43 $(call cmd,conmakehash)