diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-05-28 14:28:18 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-05-28 14:28:18 +0000 |
commit | 02044f508345f9f30fc7ae8c991d9c0d5e775ea9 (patch) | |
tree | 228aa62577a656247b8a1a85b236a18405ae975b /gnu/egcs/libio/Makefile.bsd-wrapper | |
parent | ada63ea842b3fb6f5d3954c48606f372674bdf18 (diff) |
Kill senseless duplication
Diffstat (limited to 'gnu/egcs/libio/Makefile.bsd-wrapper')
-rw-r--r-- | gnu/egcs/libio/Makefile.bsd-wrapper | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnu/egcs/libio/Makefile.bsd-wrapper b/gnu/egcs/libio/Makefile.bsd-wrapper index bcd4b2d0f98..3fdcb25480d 100644 --- a/gnu/egcs/libio/Makefile.bsd-wrapper +++ b/gnu/egcs/libio/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.1 1999/05/26 15:47:01 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1999/05/28 14:28:17 espie Exp $ LIBIO= io LIBIOSTREAM= iostream @@ -32,8 +32,6 @@ SRCS= $(LIBIO_SRCS) CLEANFILES+= _G_config.h iostream.list dummy.h -FILES= *.h - all: _G_config.h iostream.list $(LIBIOSTREAM) beforedepend: _G_config.h @@ -70,14 +68,7 @@ clean: includes: install -d -m 755 -o $(BINOWN) -g $(BINGRP) $(DESTDIR)/usr/include/g++ - @-cd $(.CURDIR); for i in $(FILES); do \ - if [ -e $$i ]; then \ - cmp -s $$i $(DESTDIR)/usr/include/g++/$$i || \ - install -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ - $$i $(DESTDIR)/usr/include/g++/$$i; \ - fi \ - done - @-for i in $(FILES); do \ + @-cd $(.CURDIR); for i in *.h; do \ if [ -e $$i ]; then \ cmp -s $$i $(DESTDIR)/usr/include/g++/$$i || \ install -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ |