Last change
on this file since 30 was
30,
checked in by tim, 20 years ago
|
Added initial version of regfio interface, borrowed from Samba project.
Library has all write capability stripped, and all Samba dependency has
either been removed, or included in the smb_deps code.
|
-
Property svn:keywords set to
Id
|
File size:
490 bytes
|
Rev | Line | |
---|
[30] | 1 | # $Id: Makefile 30 2005-07-16 14:31:27Z tim $ |
---|
| 2 | |
---|
| 3 | ################################################################################ |
---|
| 4 | |
---|
| 5 | REGFIO_O=../lib/regfio.o |
---|
| 6 | LIB_REGFIO_O=lib-regfio.o |
---|
| 7 | LIB_REGFIO=lib-regfio |
---|
| 8 | FILES=$(LIB_REGFIO) $(REGFIO_O) |
---|
| 9 | |
---|
| 10 | all: $(FILES) |
---|
| 11 | |
---|
| 12 | $(REGFIO_O): ../lib/regfio.c |
---|
| 13 | $(CC) $(CFLAGS) $(OPTS) -c -o $@ ../lib/regfio.c |
---|
| 14 | |
---|
| 15 | $(LIB_REGFIO_O): lib-regfio.c |
---|
| 16 | $(CC) $(CFLAGS) $(OPTS) -c -o $@ lib-regfio.c |
---|
| 17 | |
---|
| 18 | $(LIB_REGFIO): $(LIB_REGFIO_O) $(REGFIO_O) |
---|
| 19 | $(CC) $(CFLAGS) $(OPTS) -o $@ $(LIB_REGFIO_O) $(REGFIO_O) ../lib/smb_deps.c |
---|
Note: See
TracBrowser
for help on using the repository browser.