diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-30 13:20:29 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-30 13:20:29 +0200 |
commit | 25441348c4a28fd0821fe7a173e3c6cc166deb16 (patch) | |
tree | 6facf7c7a77fed51285d738ca6c85429c4bdf73b /GNUmakefile | |
parent | 8c315b4082bd2cc70d3df5a3d34f0aeaee17d386 (diff) | |
download | fbida-25441348c4a28fd0821fe7a173e3c6cc166deb16.tar.gz |
kbd support code
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index ba9d15e..6066a09 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,7 +16,7 @@ all: build # what to build TARGETS := exiftran thumbnail.cgi ifeq ($(HAVE_LINUX_FB_H),yes) - TARGETS += fbi fbpdf + TARGETS += fbi fbpdf kbdtest endif ifeq ($(HAVE_MOTIF),yes) TARGETS += ida @@ -172,7 +172,7 @@ ida.o: Ida.ad.h logo.h # object files OBJS_FBI := \ - fbi.o vt.o fbtools.o drmtools.o fb-gui.o desktop.o \ + fbi.o vt.o kbd.o fbtools.o drmtools.o fb-gui.o desktop.o \ parseconfig.o fbiconfig.o \ jpegtools.o jpeg/$(JPEG_VER)/transupp.o \ dither.o filter.o op.o @@ -202,6 +202,11 @@ fbpdf: $(OBJS_FBPDF) ######################################################################## +# rules for kbdtest + +kbdtest : kbdtest.o kbd.o + +######################################################################## # general rules .PHONY: check-libjpeg build install clean distclean realclean |