[project @ 2001-08-04 06:11:24 by ken]
authorken <unknown>
Sat, 4 Aug 2001 06:11:24 +0000 (06:11 +0000)
committerken <unknown>
Sat, 4 Aug 2001 06:11:24 +0000 (06:11 +0000)
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)

mk/target.mk

index 69f48c8..8d5571d 100644 (file)
@@ -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)