diff options
author | Chris Kuethe <ckuethe@cvs.openbsd.org> | 2010-07-23 19:46:01 +0000 |
---|---|---|
committer | Chris Kuethe <ckuethe@cvs.openbsd.org> | 2010-07-23 19:46:01 +0000 |
commit | 7da01516e40309dc9ac10762b7b1e6719b738956 (patch) | |
tree | e8f43b48a22b764646e38b7e6958662bc9810478 /app | |
parent | 4183be1b64b7706ee9d4baa593425338e0ccfe11 (diff) |
allow "make build" to work, ok matthieu@
Diffstat (limited to 'app')
-rw-r--r-- | app/video/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/video/Makefile b/app/video/Makefile index 4bf89f466..8df4b2d4a 100644 --- a/app/video/Makefile +++ b/app/video/Makefile @@ -1,13 +1,13 @@ +# $OpenBSD: Makefile,v 1.2 2010/07/23 19:46:00 ckuethe Exp $ +.include <bsd.xconf.mk> + PROG= video -SRCS= video.c -MAN= video.1 -CFLAGS+= -I${X11BASE}/include -LDFLAGS+= -L${X11BASE}/lib -LDADD+= -lX11 -lXv -BINDIR= ${X11BASE}/bin +CPPFLAGS+= -I${X11BASE}/include +LDADD+= -L${X11BASE}/lib -lX11 -lXv MANDIR= ${X11BASE}/man/cat -.include <bsd.xconf.mk> -.include <bsd.prog.mk> +obj: _xenocara_obj +.include <bsd.prog.mk> +.include <bsd.xorg.mk> |