#
# This is the Makefile for the keyboard-subdirectory of the DOS-emulator
# for Linux.
#

SUBDIR=keyboard

ifdef X_SUPPORT
XFILES = Xkeyb.c
XOBJS  = Xkeyb.o
endif

CFILES = keymaps.c keyboard-server.c keyboard-client.c
DEPENDS= keymaps.d keyboard-server.d keyboard-client.d
HFILES = 
# XSRC   = XKeyb.c

CFLAGS+= $(USE_SLANG)

# Insert all source- and header-files here.

ALL = $(CFILES) $(HFILES) $(XFILES) slang-keyboard.c

# All object-files are included here.

OBJS = keymaps.o keyboard-server.o keyboard-client.o $(XOBJS) 


all: lib

install:

include ../Makefile.common
