From: ken Date: Sat, 4 Aug 2001 06:11:24 +0000 (+0000) Subject: [project @ 2001-08-04 06:11:24 by ken] X-Git-Tag: Approximately_9120_patches~1359 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=225d251337438e2f7870f0ec2781b1c616ef7462;hp=225d251337438e2f7870f0ec2781b1c616ef7462;p=ghc-hetmet.git [project @ 2001-08-04 06:11:24 by ken] Changed # Add _hsc.c files to the cbits library SRCS += $(wildcard ../*_hsc.c) (which didn't work because SRCS has already been pattern-matched and substituted into other make variables to death by then) to # Add _hsc.c files to the cbits library C_SRCS += $(wildcard ../*_hsc.c) ---