Last change
on this file since 226 was
108,
checked in by tim, 17 years ago
|
added least-recently-used cache structure.
set up SK records to use this instead of the linked list.
|
File size:
617 bytes
|
Line | |
---|
1 | # $Id: Makefile 30 2005-07-16 14:31:27Z tim $ |
---|
2 | |
---|
3 | ################################################################################ |
---|
4 | |
---|
5 | FILES=regfi.o smb_deps.o void_stack.o range_list.o lru_cache.o |
---|
6 | |
---|
7 | all: $(FILES) |
---|
8 | |
---|
9 | regfi.o: regfi.c |
---|
10 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ regfi.c |
---|
11 | |
---|
12 | smb_deps.o: smb_deps.c |
---|
13 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ smb_deps.c |
---|
14 | |
---|
15 | void_stack.o: void_stack.c |
---|
16 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ void_stack.c |
---|
17 | |
---|
18 | range_list.o: range_list.c |
---|
19 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ range_list.c |
---|
20 | |
---|
21 | lru_cache.o: lru_cache.c |
---|
22 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ lru_cache.c |
---|
23 | |
---|
24 | clean: |
---|
25 | rm -f $(FILES) |
---|
Note: See
TracBrowser
for help on using the repository browser.