Subversion Repositories HelenOS-historic

Rev

Rev 1451 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1451 Rev 1707
Line 46... Line 46...
46
	generic/key_buffer.c
46
	generic/key_buffer.c
47
 
47
 
48
ARCH_SOURCES = \
48
ARCH_SOURCES = \
49
	arch/$(ARCH)/src/kbd.c
49
	arch/$(ARCH)/src/kbd.c
50
 
50
 
-
 
51
ifeq ($(ARCH), ia32)
-
 
52
	ARCH_SOURCES += arch/$(ARCH)/src/mouse.c
-
 
53
	CFLAGS += -DMOUSE_ENABLED
-
 
54
endif
-
 
55
ifeq ($(ARCH), amd64)
-
 
56
	ARCH_SOURCES += arch/$(ARCH)/src/mouse.c
-
 
57
	CFLAGS += -DMOUSE_ENABLED
-
 
58
endif
-
 
59
 
-
 
60
 
-
 
61
 
51
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
62
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
52
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
63
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
53
 
64
 
54
.PHONY: all clean depend disasm links
65
.PHONY: all clean depend disasm links
55
 
66