#	@(#)Makefile	3.2	89/03/07	mt Xinu
#
# Copyright (c) 1987 Regents of the University of California.
# All rights reserved.  The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
#	@(#)Makefile	4.3	(Berkeley)	6/3/87
#
CFLAGS=	-O
LIBC=	/lib/libc.a
SRCS=	sed0.c sed1.c
OBJS=	sed0.o sed1.o

all: sed

sed:	${OBJS} ${LIBC}
	${CC} -o $@ ${CFLAGS} ${OBJS}

clean: FRC
	rm -f ${OBJS} core sed

depend: FRC
	mkdep ${CFLAGS} ${SRCS}

install: FRC
	install -s -m 755 sed ${DESTDIR}/bin/sed

lint: FRC
	lint ${CFLAGS} ${SRCS}

tags: FRC
	ctags ${SRCS}

FRC:

# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.


# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
