Edit

IABSD.fr/xenocara/lib/libGLw/Makefile

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2008-02-12 21:09:25
    Hash : b139abf7
    Message : Update to Mesa 7.0.2. Tested by naddy@ (full ports build), simon@ and oga@ (with dri enabled).

  • lib/libGLw/Makefile
  • # $OpenBSD: Makefile,v 1.8 2008/02/12 21:09:27 matthieu Exp $
    
    DEBUG?=
    
    LIB= GLw
    
    MESA_MAJOR=	7
    MESA_MINOR=	0
    MESA_TINY=	2
    
    CPPFLAGS += -I${X11BASE}/include \
    	-I${.CURDIR}
    
    SRCS= \
    	GLwDrawA.c \
    	GLwDAUtil.c \
    	GLwM1DrawA.c \
    	GLwM2DrawA.c
    
    INCS= \
    	GLwDrawA.h \
    	GLwDrawAP.h \
    	GLwMDrawA.h \
    	GLwMDrawAP.h
    
    obj: _xenocara_obj
    
    includes:
    	cd ${.CURDIR}; 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
    
    beforeinstall: includes
    
    afterinstall: glw.pc
    	$(INSTALL) -c -m 644 -o root -g wheel glw.pc \
    		${DESTDIR}${LIBDIR}/pkgconfig
    
    glw.pc: glw.pc.in
    	sed -e 's,@INSTALL_DIR@,$(X11BASE),' \
    	    -e 's,@LIB_DIR@,lib,' \
    	    -e 's,@VERSION@,$(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY),' \
    	< ${.CURDIR}/glw.pc.in > glw.pc
    
    NOPROFILE=
    
    .include <bsd.lib.mk>
    .include <bsd.xorg.mk>