diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-21 11:27:42 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-21 11:28:08 +0200 |
commit | 10cf3d2ea4659bf1608984f43d98b0845846188f (patch) | |
tree | d9129463400f7ad7347c9c6176afb4f69d035136 /GNUmakefile | |
parent | b45f7c813cde7ffa7315833631eef5700ddaa04e (diff) | |
download | input-10cf3d2ea4659bf1608984f43d98b0845846188f.tar.gz |
add emulate-key
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 73bae9d..7b737bb 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,8 @@ include mk/Variables.mk CFLAGS += -DVERSION='"$(VERSION)"' # build -TARGETS := lsinput input-events input-kbd input-send input-recv lircd.conf +TARGETS := input-events input-kbd input-send input-recv +TARGETS += lsinput emulate-key lircd.conf HEADERS := EV.h REL.h ABS.h MSC.h LED.h SND.h REP.h KEY.h BTN.h BUS.h SW.h # default target @@ -39,6 +40,7 @@ input-events: input-events.o input.o input-kbd: input-kbd.o input.o input-send: input-send.o input.o tcp.o input-recv: input-recv.o input.o tcp.o +emulate-key: emulate-key.o input.o input.o: input.c $(HEADERS) |