source: mainline/uspace/srv/kbd/Makefile@ 0a5116db

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0a5116db was 63b1537, checked in by Pavel Rimsky <rimskyp@…>, 17 years ago

SGCN driver modified to reflect the new keyboard driver architecture. Making the Serengeti bootable image smaller by not including some servers/applications.

  • Property mode set to 100644
File size: 3.8 KB
Line 
1#
2# Copyright (c) 2005 Martin Decky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29## Setup toolchain
30#
31
32LIBC_PREFIX = ../../lib/libc
33SOFTINT_PREFIX = ../../lib/softint
34
35include $(LIBC_PREFIX)/Makefile.toolchain
36
37CFLAGS += -Iinclude -I../libadt/include
38
39LIBS = $(LIBC_PREFIX)/libc.a
40
41## Sources
42#
43
44OUTPUT = kbd
45GENERIC_SOURCES = \
46 generic/kbd.c \
47 genarch/gsp.c \
48 genarch/stroke.c \
49 generic/key_buffer.c
50
51ARCH_SOURCES =
52GENARCH_SOURCES =
53
54ifeq ($(KBD_LAYOUT), us_qwerty)
55 GENARCH_SOURCES += layout/us_qwerty.c
56endif
57ifeq ($(KBD_LAYOUT), us_dvorak)
58 GENARCH_SOURCES += layout/us_dvorak.c
59endif
60
61ifeq ($(UARCH), amd64)
62 GENARCH_SOURCES += \
63 port/i8042.c \
64 ctl/pc.c
65endif
66ifeq ($(UARCH), arm32)
67 GENARCH_SOURCES += \
68 port/gxemul.c
69 ifeq ($(CONFIG_FB), y)
70 GENARCH_SOURCES += \
71 ctl/gxe_fb.c
72 else
73 GENARCH_SOURCES += \
74 ctl/stty.c
75 endif
76endif
77ifeq ($(UARCH), ia32)
78 GENARCH_SOURCES += \
79 port/i8042.c \
80 ctl/pc.c
81endif
82ifeq ($(MACHINE), i460GX)
83 GENARCH_SOURCES += \
84 port/i8042.c \
85 ctl/pc.c
86endif
87ifeq ($(MACHINE), ski)
88 GENARCH_SOURCES += \
89 port/ski.c \
90 ctl/stty.c
91endif
92ifeq ($(MACHINE), msim)
93 GENARCH_SOURCES += \
94 port/msim.c \
95 ctl/stty.c
96endif
97ifeq ($(MACHINE), lgxemul)
98 GENARCH_SOURCES += \
99 port/gxemul.c
100 ifeq ($(CONFIG_FB), y)
101 GENARCH_SOURCES += \
102 ctl/gxe_fb.c
103 else
104 GENARCH_SOURCES += \
105 ctl/stty.c
106 endif
107endif
108ifeq ($(MACHINE), bgxemul)
109 GENARCH_SOURCES += \
110 port/gxemul.c \
111 ctl/stty.c
112endif
113ifeq ($(UARCH), ppc32)
114 GENARCH_SOURCES += \
115 port/dummy.c \
116 ctl/stty.c
117endif
118ifeq ($(UARCH), sparc64)
119 ifeq ($(MACHINE),serengeti)
120 GENARCH_SOURCES += \
121 port/sgcn.c \
122 ctl/stty.c
123 else
124 GENARCH_SOURCES += \
125 port/z8530.c \
126 ctl/sun.c
127 endif
128endif
129
130GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
131ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
132GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
133
134OBJECTS := $(ARCH_OBJECTS) $(GENERIC_OBJECTS) $(GENARCH_OBJECTS)
135
136.PHONY: all clean depend disasm links
137
138all: $(OUTPUT) $(OUTPUT).disasm
139
140-include Makefile.depend
141
142clean:
143 -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS)
144
145depend:
146 $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend
147
148$(OUTPUT): $(OBJECTS) $(LIBS)
149 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
150
151disasm: $(OUTPUT).disasm
152
153$(OUTPUT).disasm: $(OUTPUT)
154 $(OBJDUMP) -d $< >$@
155
156%.o: %.S
157 $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
158
159%.o: %.s
160 $(AS) $(AFLAGS) $< -o $@
161
162%.o: %.c
163 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
Note: See TracBrowser for help on using the repository browser.