diff options
author | mycroft <mycroft@pkgsrc.org> | 1998-11-05 05:32:18 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 1998-11-05 05:32:18 +0000 |
commit | 8e318baa36dd27187a50cfac58d08f6cd20afe82 (patch) | |
tree | d304f8c1511a931c80cf7c46da6cc75b9c835880 /mbone/sdr/files/Makefile.netbsd | |
parent | 9e25d63e7216426d9be4aecc8baa7c81b5028c79 (diff) | |
download | pkgsrc-8e318baa36dd27187a50cfac58d08f6cd20afe82.tar.gz |
2.5.8
Diffstat (limited to 'mbone/sdr/files/Makefile.netbsd')
-rw-r--r-- | mbone/sdr/files/Makefile.netbsd | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/mbone/sdr/files/Makefile.netbsd b/mbone/sdr/files/Makefile.netbsd index ff4285df414..4c6d1cf79af 100644 --- a/mbone/sdr/files/Makefile.netbsd +++ b/mbone/sdr/files/Makefile.netbsd @@ -1,18 +1,12 @@ -# -# $NetBSD: Makefile.netbsd,v 1.3 1998/09/13 18:02:10 garbled Exp $ -# -CC=cc -INCLUDES=-I${LOCALBASE}/include/tk8.0 -I${LOCALBASE}/include/tcl8.0 -I${X11BASE}/include -LIB_DIR=${LOCALBASE}/lib -LIBS= ${LDFLAGS} -L${LIB_DIR} -ltk80 -ltcl80 -lm -L${X11BASE}/lib -lX11 -CFLAGS+=-ggdb $(INCLUDES) -DNORANDPROTO -DUSE_PERROR -Werror -LIBRARY_TCL = ${LIB_DIR}/tcl8.0 -LIBRARY_TK = ${LIB_DIR}/tk8.0 +# $NetBSD: Makefile.netbsd,v 1.4 1998/11/05 05:32:19 mycroft Exp $ -all: sdr +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 -Werror -install: sdr - install -c -s -m 555 -o bin -g bin sdr ${PREFIX}/bin +all:: sdr + +install: + ${BSD_INSTALL_PROGRAM} sdr ${PREFIX}/bin -clean: - rm *.o *.tcl *.ehtml tcl2c |