source: trunk/lib/Makefile @ 168

Last change on this file since 168 was 168, checked in by tim, 14 years ago

merged remaining smb_deps items into regfi

began formatting API comments for use with doxygen

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