I = ../include
INCLS = $(I)/alloc.h $(I)/config.h $(I)/fgetmfs.h $(I)/libc.h $(I)/news.h \
$(I)/case.h $(I)/dbz.h $(I)/fixerrno.h

all:	$(INCLS)

$(I)/alloc.h:	alloc.h
	cp alloc.h $@
$(I)/config.h:	config.h
	cp config.h $@
$(I)/fgetmfs.h:	fgetmfs.h
	cp fgetmfs.h $@
$(I)/libc.h:	libc.h
	cp libc.h $@
$(I)/case.h:	case.h
	cp case.h $@
$(I)/dbz.h:	dbz.h
	cp dbz.h $@
$(I)/fixerrno.h:	fixerrno.h
	cp fixerrno.h $@
$(I)/news.h:	news.h newshsed
	sed -f newshsed news.h >$@

clean:
	rm -f newshsed
