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;ds=inline;h=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) --- diff --git a/mk/target.mk b/mk/target.mk index 69f48c8..8d5571d 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -344,7 +344,7 @@ ifeq "$(IS_CBITS_LIB)" "YES" _cbits := _cbits STUBOBJS += $(HSC_C_OBJS) # Add _hsc.c files to the cbits library -SRCS += $(wildcard ../*_hsc.c) +C_SRCS += $(wildcard ../*_hsc.c) # Make .hsc.h include files from the directory above visible SRC_CC_OPTS += -I.. endif @@ -378,7 +378,7 @@ endif # PACKAGE #---------------------------------------- # Libraries/archives # -# Build $(LIBRARY) from $(LIBOJBS)+$(STUBOBJS) +# Build $(LIBRARY) from $(LIBOBJS)+$(STUBOBJS) # # Inputs: # $(LIBOBJS)