[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)
commit225d251337438e2f7870f0ec2781b1c616ef7462
tree92466f3fe44209c348aa1f29ec319b888c7ace97
parentcf3860cc1a9715218f1f1e3b62e767a988472576
[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)
mk/target.mk