Skip to content
  • Ken Shan's avatar
    [project @ 2001-08-04 06:11:24 by ken] · 225d2513
    Ken Shan authored
    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)
    225d2513