source: trunk/lib/Makefile @ 147

Last change on this file since 147 was 147, checked in by tim, 15 years ago

added talloc library

incorporated talloc into winsec and lru_cache modules

introduced talloc into SK caching system

File size: 775 bytes
RevLine 
[31]1# $Id: Makefile 30 2005-07-16 14:31:27Z tim $
2
3################################################################################
4
[147]5FILES=regfi.o smb_deps.o winsec.o void_stack.o range_list.o lru_cache.o talloc.o
[31]6
7all: $(FILES)
8
[81]9regfi.o: regfi.c
10        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ regfi.c
[31]11
12smb_deps.o: smb_deps.c
[73]13        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ smb_deps.c
[31]14
[132]15winsec.o: winsec.c
16        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ winsec.c
17
[31]18void_stack.o: void_stack.c
[73]19        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ void_stack.c
[31]20
[98]21range_list.o: range_list.c
22        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ range_list.c
23
[108]24lru_cache.o: lru_cache.c
25        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ lru_cache.c
26
[147]27talloc.o: talloc.c
28        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ talloc.c
29
[31]30clean:
31        rm -f $(FILES)
Note: See TracBrowser for help on using the repository browser.