diff options
Diffstat (limited to 'www/ns-remote/files/Makefile')
-rw-r--r-- | www/ns-remote/files/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/ns-remote/files/Makefile b/www/ns-remote/files/Makefile new file mode 100644 index 00000000000..cd2d05e6340 --- /dev/null +++ b/www/ns-remote/files/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/01/12 15:03:42 abs Exp $ +# +# Very simple Makefile used to compile Netscape's ns-remote program +# + +PROG = ns-remote +X11BASE?= /usr/X11R6 + +all: ${PROG} + +${PROG}: remote.c + ${CC} ${CFLAGS} -o ${PROG} remote.c -DSTANDALONE -I${X11BASE}/include -L${X11BASE}/lib -lXmu -lX11 + +clean: + rm ${PROG} |