source: trunk/lib/Makefile @ 36

Last change on this file since 36 was 36, checked in by tim, 19 years ago

replaced reglookup.c with test driver lib-regfio.c

updated relevant Makefiles

File size: 414 bytes
Line 
1# $Id: Makefile 30 2005-07-16 14:31:27Z tim $
2
3################################################################################
4
5FILES=regfio.o smb_deps.o void_stack.o
6
7all: $(FILES)
8
9regfio.o: regfio.c
10        $(CC) $(CFLAGS) $(OPTS) -c -o $@ regfio.c
11
12smb_deps.o: smb_deps.c
13        $(CC) $(CFLAGS) $(OPTS) -c -o $@ smb_deps.c
14
15void_stack.o: void_stack.c
16        $(CC) $(CFLAGS) $(OPTS) -c -o $@ void_stack.c
17
18clean:
19        rm -f $(FILES)
Note: See TracBrowser for help on using the repository browser.