blob: 1742fd852db38490f44acc55b62ef69b435b1168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# My makefile for Angband
# Matthew Hunt <mph@FreeBSD.org>
ANGBANDLIB?= /usr/local/lib/angband
all: testing
testing:
cd src && make "EXTRA_CFLAGS=-I${LOCALBASE}/include ${JAPANESE_CFLAGS} -DDEFAULT_PATH=\\\"${ANGBANDLIB}\\\""
test: testing
ANGBAND_PATH=./lib ./testing
|