diff options
author | brian <brian@FreeBSD.org> | 1998-08-31 12:14:30 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-08-31 12:14:30 +0000 |
commit | f2c69105f211df9245ec6d0421d85d4c4fb9956b (patch) | |
tree | 1d77bbc092db8e98e3a42eb8edc6ffdbb6b5bf16 /lib | |
parent | a02d451dee605e4f5e0a891fbbc9d16e372b0415 (diff) | |
download | FreeBSD-src-f2c69105f211df9245ec6d0421d85d4c4fb9956b.zip FreeBSD-src-f2c69105f211df9245ec6d0421d85d4c4fb9956b.tar.gz |
Remove OpenBSD build support - let the Makefile vary per
OS rather than making it a mess and potentially screwing
up cross builds.
Suggested by: bde
Add Id keyword.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalias/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/libalias/Makefile b/lib/libalias/Makefile index 10f33d2..665d14e 100644 --- a/lib/libalias/Makefile +++ b/lib/libalias/Makefile @@ -1,20 +1,15 @@ -LIB= alias -CFLAGS+=-Wall -I${.CURDIR} -SRCS= alias.c alias_cuseeme.c alias_db.c alias_ftp.c alias_irc.c \ - alias_nbt.c alias_old.c alias_util.c +# $Id$ -OPSYS!= uname -s -.if (${OPSYS} == "OpenBSD") -MAN= libalias.3 -CFLAGS+= -DNO_FW_PUNCH -.else +LIB= alias SHLIB_MAJOR= 2 SHLIB_MINOR= 5 +CFLAGS+= -Wall -I${.CURDIR} +SRCS= alias.c alias_cuseeme.c alias_db.c alias_ftp.c alias_irc.c \ + alias_nbt.c alias_old.c alias_util.c MAN3= libalias.3 beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/alias.h \ ${DESTDIR}/usr/include -.endif .include <bsd.lib.mk> |