blob: 05e563d8294469a83e16c863e9331c3b574145f9 (
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${X11BASE}/include
SRCS= shhcards.c
.include <bsd.lib.mk>
|