xenocara/lib/libGLw/Makefile

37 lines
615 B
Makefile
Raw Normal View History

2006-11-29 11:03:09 -07:00
# $OpenBSD: Makefile,v 1.3 2006/11/29 18:03:09 matthieu Exp $
2006-11-26 04:21:13 -07:00
DIST= ${.CURDIR}/../../dist/Mesa
GLW= ${DIST}/src/glw
LIB= GLw
CPPFLAGS += -I${DIST}/include \
-I${X11BASE}/include
SRCS= \
GLwDrawA.c
2006-11-29 07:45:19 -07:00
INCS= \
GLwDrawA.h \
GLwDrawAP.h \
GLwMDrawA.h \
GLwMDrawAP.h
includes:
cd ${GLW}; for i in ${INCS}; do \
j="cmp -s $$i ${DESTDIR}${INCSDIR}/GL/$$i || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
$$i ${DESTDIR}${INCSDIR}/GL"; \
echo "\tinstalling $$i"; \
eval "$$j"; \
done
2006-11-29 11:03:09 -07:00
beforeinstall: includes
NOPROFILE=
2006-11-26 04:21:13 -07:00
.include <bsd.lib.mk>
.include <bsd.xorg.mk>
.PATH: ${GLW}