[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)


No differences found