diff options
author | 1996-10-15 08:35:25 +0000 | |
---|---|---|
committer | 1996-10-15 08:35:25 +0000 | |
commit | b58d2f3e4da4fc76d81db46362be9747be2ce516 (patch) | |
tree | 454bd6bfb6b824594ecc4d7af6cfb7f2f6957942 | |
parent | Yeah, ok, so I never even bothered to test compile it before... (diff) | |
download | wireguard-openbsd-b58d2f3e4da4fc76d81db46362be9747be2ce516.tar.xz wireguard-openbsd-b58d2f3e4da4fc76d81db46362be9747be2ce516.zip |
ld is smarter then we are!
-rw-r--r-- | usr.bin/vim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vim/Makefile b/usr.bin/vim/Makefile index bd4e61d2595..054aaf1a4af 100644 --- a/usr.bin/vim/Makefile +++ b/usr.bin/vim/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1996/09/22 01:17:57 downsj Exp $ +# $OpenBSD: Makefile,v 1.5 1996/10/15 08:35:25 downsj Exp $ .PATH: ${.CURDIR}/doc @@ -29,11 +29,11 @@ DOCS= vim_40.txt vim_ami.txt vim_arch.txt vim_diff.txt vim_digr.txt \ # I haven't tried this, but it's a start... # Use the following to build Motif vim: #SRCS+= gui.c gui_motif.c gui_x11.c pty_openbsd.c -#LDADD+= -L/some/where/motif/lib -L/some/where/X11/lib -lXm -lXt -lutil +#LDADD+= -L/some/where/motif/lib -L/some/where/X11/lib -lXm -lXt -lX11 -lutil #CFLAGS+= -I/some/where/motif/include -I/some/where/X11/include -DHAVE_X11 -DUSE_GUI_MOTIF # Use the following to build Athena vim: #SRCS+= gui.c gui_athena.c gui_x11.c pty_openbsd.c gui_at_sb.c -#LDADD+= -L/some/where/X11/lib -lXaw -lXt -lXmu -lutil +#LDADD+= -L/some/where/X11/lib -lXaw -lXt -lXmu -lX11 -lutil #CFLAGS+= -I/some/where/X11/include -DHAVE_X11 -DUSE_GUI_ATHENA CLEANFILES+= mkcmdtab cmdtab.h |