diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-02-22 23:27:15 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-04-16 23:40:56 +0200 |
commit | 211507d598b67e6e274275ab472d5e81ec1afcec (patch) | |
tree | 47d4ba219c740b85dd563e312083f2787016d0ec /Makefile | |
parent | 4dd4dcb4f594c872df222390031975d06adc7e71 (diff) |
Factor event handling code out into events.c
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ CFLAGS := -O2 -W -Wall -I$(KDIR)/usr/include LDFLAGS := -Lisp LIBS := -lomap3isp -lrt -OBJ_LIVE := live.o videoout.o -OBJ_SNAP := snapshot.o +OBJ_LIVE := live.o events.o videoout.o +OBJ_SNAP := snapshot.o events.o %.o : %.c $(CC) $(CFLAGS) -c -o $@ $< |