blob: f5488978f8fed9c044210cd18173ab668f1d8b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
PREFIX?= /usr/X11R6
SHLIB_VER?= 1
LIB= shhcards
LIBDIR= ${PREFIX}/lib
SHLIB_MAJOR= ${SHLIB_VER}
SHLIB_MINOR= 0
NOPROFILE= yes
NOOBJ= yes
INCS= shhcards.h
INCSDIR=${PREFIX}/include
INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API
CFLAGS+= -I${LOCALBASE}/include
SRCS= shhcards.c
.include <bsd.lib.mk>
|