Changeset 98 for trunk


Ignore:
Timestamp:
03/01/08 01:55:16 (16 years ago)
Author:
tim
Message:

adding experimental library which will be used to speed up hbin lookups

Location:
trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r88 r98  
    1313OPTS=-std=gnu89 -pedantic -Wall
    1414INC=-I/usr/local/include
    15 LIB=-L/usr/local/lib
     15LIB=-L/usr/local/lib -lm
    1616
    1717UNAME := $(shell uname)
  • trunk/lib/Makefile

    r81 r98  
    33################################################################################
    44
    5 FILES=regfi.o smb_deps.o void_stack.o
     5FILES=regfi.o smb_deps.o void_stack.o range_list.o
    66
    77all: $(FILES)
     
    1616        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ void_stack.c
    1717
     18range_list.o: range_list.c
     19        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ range_list.c
     20
    1821clean:
    1922        rm -f $(FILES)
Note: See TracChangeset for help on using the changeset viewer.