diff options
Diffstat (limited to 'drivers/char/Makefile')
-rw-r--r-- | drivers/char/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/char/Makefile b/drivers/char/Makefile index af9983701..7544ffb4a 100644 --- a/drivers/char/Makefile +++ b/drivers/char/Makefile @@ -122,6 +122,14 @@ else endif endif +ifeq ($(CONFIG_ISI),y) +L_OBJS += isicom.o +else + ifeq ($(CONFIG_ISI),m) + M_OBJS += isicom.o + endif +endif + ifeq ($(CONFIG_ESPSERIAL),y) L_OBJS += esp.o else @@ -384,6 +392,14 @@ else endif endif +ifeq ($(CONFIG_RADIO_GEMTEK),y) +L_OBJS += radio-gemtek.o +else + ifeq ($(CONFIG_RADIO_GEMTEK),m) + M_OBJS += radio-gemtek.o + endif +endif + ifeq ($(CONFIG_QIC02_TAPE),y) L_OBJS += tpqic02.o else |