From: panne Date: Sat, 4 Dec 1999 15:17:42 +0000 (+0000) Subject: [project @ 1999-12-04 15:17:42 by panne] X-Git-Tag: Approximately_9120_patches~5431 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=509f4a67f033d837173394515ac15764fd4a6970;p=ghc-hetmet.git [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. --- 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