Changeset b1bdc7a4 in mainline for uspace/srv/hid/kbd/Makefile


Ignore:
Timestamp:
2011-06-11T19:48:15Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
56ad818
Parents:
774fc85
Message:

Control keyboard port modules through ops structures. Allows compiling in
all modules at the same time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/kbd/Makefile

    r774fc85 rb1bdc7a4  
    4949        layout/cz.c \
    5050        layout/us_qwerty.c \
    51         layout/us_dvorak.c
     51        layout/us_dvorak.c \
     52        port/adb.c \
     53        port/chardev.c \
     54        port/dummy.c \
     55        port/gxemul.c \
     56        port/msim.c \
     57        port/niagara.c \
     58        port/ns16550.c \
     59        port/pl050.c \
     60        port/sgcn.c \
     61        port/ski.c \
     62        port/sun.c \
     63        port/z8530.c
     64
    5265
    5366ifeq ($(UARCH),amd64)
    5467        SOURCES += \
    55                 port/chardev.c \
    5668                ctl/pc.c
    5769endif
     
    6072        ifeq ($(MACHINE),gta02)
    6173                SOURCES += \
    62                         port/chardev.c \
    6374                        ctl/stty.c
    6475        endif
    6576        ifeq ($(MACHINE),testarm)
    66                 SOURCES += \
    67                         port/gxemul.c
    68                
    6977                ifeq ($(CONFIG_FB),y)
    7078                        SOURCES += \
     
    7785        ifeq ($(MACHINE),integratorcp)
    7886                SOURCES += \
    79                         port/pl050.c \
    8087                        ctl/pc.c
    8188        endif
     
    8491ifeq ($(UARCH),ia32)
    8592        SOURCES += \
    86                 port/chardev.c \
    8793                ctl/pc.c
    8894endif
     
    9096ifeq ($(MACHINE),i460GX)
    9197        SOURCES += \
    92                 port/chardev.c \
    9398                ctl/pc.c
    9499endif
     
    96101ifeq ($(MACHINE),ski)
    97102        SOURCES += \
    98                 port/ski.c \
    99103                ctl/stty.c
    100104endif
     
    102106ifeq ($(MACHINE),msim)
    103107        SOURCES += \
    104                 port/msim.c \
    105108                ctl/stty.c
    106109endif
    107110
    108111ifeq ($(MACHINE),lgxemul)
    109         SOURCES += \
    110                 port/gxemul.c
    111        
    112112        ifeq ($(CONFIG_FB),y)
    113113                SOURCES += \
     
    120120
    121121ifeq ($(MACHINE),bgxemul)
    122         SOURCES += \
    123                 port/gxemul.c
    124        
    125122        ifeq ($(CONFIG_FB),y)
    126123                SOURCES += \
     
    134131ifeq ($(UARCH),ppc32)
    135132        SOURCES += \
    136                 port/adb.c \
    137133                ctl/apple.c
    138134endif
     
    141137        ifeq ($(PROCESSOR),sun4v)
    142138                SOURCES += \
    143                         port/niagara.c \
    144139                        ctl/stty.c
    145140        else
    146141                ifeq ($(MACHINE),serengeti)
    147142                        SOURCES += \
    148                                 port/sgcn.c \
    149143                                ctl/stty.c
    150144                endif
    151145                ifeq ($(MACHINE),generic)
    152146                        SOURCES += \
    153                         port/sun.c \
    154                         port/z8530.c \
    155                         port/ns16550.c \
    156                         ctl/sun.c
     147                                ctl/sun.c
    157148                endif
    158149        endif
     
    161152ifeq ($(UARCH),abs32le)
    162153        SOURCES += \
    163                 port/dummy.c \
    164154                ctl/pc.c
    165155endif
Note: See TracChangeset for help on using the changeset viewer.