From 509f4a67f033d837173394515ac15764fd4a6970 Mon Sep 17 00:00:00 2001 From: panne Date: Sat, 4 Dec 1999 15:17:42 +0000 Subject: [PATCH] [project @ 1999-12-04 15:17:42 by panne] Replaced $(H_FILES) $(H_CONFIG) with $(wildcard *.h), it seemed to be a cut-n-paste bug from another Makefile where they are defined. --- ghc/lib/std/cbits/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/lib/std/cbits/Makefile b/ghc/lib/std/cbits/Makefile index 6f1a87c..011c929 100644 --- a/ghc/lib/std/cbits/Makefile +++ b/ghc/lib/std/cbits/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1999/11/26 15:56:52 simonmar Exp $ +# $Id: Makefile,v 1.10 1999/12/04 15:17:42 panne Exp $ TOP = ../../.. include $(TOP)/mk/boilerplate.mk @@ -53,6 +53,6 @@ endif # install header files for the I/O library. Other code might want to # plug override datadir:=$(libdir)/includes -INSTALL_DATAS += $(H_FILES) $(H_CONFIG) +INSTALL_DATAS += $(wildcard *.h) include $(TOP)/mk/target.mk -- 1.7.10.4