Makefile (b478da3630df5f29cd33dec5774ea52477eaf8fc) | Makefile (b2e8bf35bd1760d0ddec12b6d84088d2682e3e2b) |
---|---|
1# $FreeBSD$ |
|
1LIB= vgl 2SHLIB_MAJOR= 1 3SHLIB_MINOR= 0 4CFLAGS+=-Wall -I${.CURDIR} 5SRCS= main.c simple.c bitmap.c text.c mouse.c keyboard.c 6MAN3= vgl.3 | 2LIB= vgl 3SHLIB_MAJOR= 1 4SHLIB_MINOR= 0 5CFLAGS+=-Wall -I${.CURDIR} 6SRCS= main.c simple.c bitmap.c text.c mouse.c keyboard.c 7MAN3= vgl.3 |
8MLINKS+= vgl.3 VGLBitmapCopy.3 \ 9 vgl.3 VGLBitmapPutChar.3 \ 10 vgl.3 VGLBitmapString.3 \ 11 vgl.3 VGLBlankDisplay.3 \ 12 vgl.3 VGLBox.3 \ 13 vgl.3 VGLCheckSwitch.3 \ 14 vgl.3 VGLClear.3 \ 15 vgl.3 VGLEllipse.3 \ 16 vgl.3 VGLEnd.3 \ 17 vgl.3 VGLFilledBox.3 \ 18 vgl.3 VGLFilledEllipse.3 \ 19 vgl.3 VGLInit.3 \ 20 vgl.3 VGLLine.3 \ 21 vgl.3 VGLMouseInit.3 \ 22 vgl.3 VGLMouseMode.3 \ 23 vgl.3 VGLMouseSetImage.3 \ 24 vgl.3 VGLMouseSetStdImage.3 \ 25 vgl.3 VGLMouseStatus.3 \ 26 vgl.3 VGLSetBorder.3 \ 27 vgl.3 VGLSetPalette.3 \ 28 vgl.3 VGLSetPaletteIndex.3 \ 29 vgl.3 VGLTextSetFontFile.3 |
|
7 8beforeinstall: 9 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgl.h \ 10 ${DESTDIR}/usr/include 11 12.include <bsd.lib.mk> | 30 31beforeinstall: 32 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgl.h \ 33 ${DESTDIR}/usr/include 34 35.include <bsd.lib.mk> |