blob: 1fc70be35b814fa69b3786c8eadbb2ebf9385b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile.netbsd,v 1.5 1999/01/01 07:58:29 garbled Exp $
CC = gcc -g -O
INCLUDES = -I${LOCALBASE}/include/tk8.0 -I${LOCALBASE}/include/tcl8.0 -I${X11BASE}/include
LIBS = -L${LOCALBASE}/lib -ltk80 -ltcl80 -lm -L${X11BASE}/lib -lX11
CFLAGS = ${INCLUDES} -DNORANDPROTO -DUSE_PERROR -DAUTH ${EXTRA_FLAGS} -Werror
all:: sdr
install:
${BSD_INSTALL_PROGRAM} sdr ${PREFIX}/bin
|