diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-30 15:42:40 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-30 15:42:40 +0000 |
commit | 93df2c62cc32191e88c0c4e615ac6077ec2b07c3 (patch) | |
tree | b1657c216fbfee6841983e9887dc0edacd5d7e4b /source/ubiqx | |
parent | 13d90255928711c05d8e147081afa309b8abf1af (diff) | |
download | samba-93df2c62cc32191e88c0c4e615ac6077ec2b07c3.tar.gz samba-93df2c62cc32191e88c0c4e615ac6077ec2b07c3.tar.xz samba-93df2c62cc32191e88c0c4e615ac6077ec2b07c3.zip |
Makefiles for libraries. the dependencies aren't quite right, and i
don't know how to sort them.
make proto in each library directory. over-ride the make proto for ubiqx,
so that it doesn't happen, but throws up a warning instead.
Diffstat (limited to 'source/ubiqx')
-rw-r--r-- | source/ubiqx/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source/ubiqx/Makefile b/source/ubiqx/Makefile new file mode 100644 index 00000000000..fba055ec965 --- /dev/null +++ b/source/ubiqx/Makefile @@ -0,0 +1,19 @@ +########################################################################### +# Database Module Library Makefile for Samba SMB client/server for unix +# Copyright (C) Andrew Tridgell 1992-1996 +# Copyright (C) John H Terpstra 1995-1997 +# Copyright (C) Luke Kenneth Casson Leighton 1996-1997 +########################################################################### + +THIS_LIB = libubiqx.a +THIS_OBJ = ubi_dLinkList.o +LIB_INCS = ubi_dLinkList.h + +export THIS_LIB +export THIS_OBJ +export LIB_INCS + +include ../Makefile.lib + +proto: + @echo Prototype for $@ are not automatically generated |