freebsd-dev/lib/libvgl/Makefile
Kazutaka YOKOTA 5acf51ea02 - This is the new version of libvgl jointly developed by sos and I.
It adds new functions and extend some structures and can handle
  VESA modes.
- Update the man page.
- Bump the library version number.

(The old version will be added to compat3x.)
1999-11-08 11:37:46 +00:00

36 lines
848 B
Makefile

# $FreeBSD$
LIB= vgl
SHLIB_MAJOR= 2
SHLIB_MINOR= 0
CFLAGS+=-Wall -I${.CURDIR}
SRCS= main.c simple.c bitmap.c text.c mouse.c keyboard.c
MAN3= vgl.3
MLINKS+= vgl.3 VGLBitmapCopy.3 \
vgl.3 VGLBitmapPutChar.3 \
vgl.3 VGLBitmapString.3 \
vgl.3 VGLBlankDisplay.3 \
vgl.3 VGLBox.3 \
vgl.3 VGLCheckSwitch.3 \
vgl.3 VGLClear.3 \
vgl.3 VGLEllipse.3 \
vgl.3 VGLEnd.3 \
vgl.3 VGLFilledBox.3 \
vgl.3 VGLFilledEllipse.3 \
vgl.3 VGLInit.3 \
vgl.3 VGLLine.3 \
vgl.3 VGLMouseInit.3 \
vgl.3 VGLMouseMode.3 \
vgl.3 VGLMouseSetImage.3 \
vgl.3 VGLMouseSetStdImage.3 \
vgl.3 VGLMouseStatus.3 \
vgl.3 VGLSetBorder.3 \
vgl.3 VGLSetPalette.3 \
vgl.3 VGLSetPaletteIndex.3 \
vgl.3 VGLTextSetFontFile.3
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgl.h \
${DESTDIR}/usr/include
.include <bsd.lib.mk>