diff options
author | Christopher R. Hertel <crh@samba.org> | 1997-10-15 17:59:58 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1997-10-15 17:59:58 +0000 |
commit | 5619b53921aca62fea163399fd0ca1915e50cc11 (patch) | |
tree | 261a5f6fc9288da5f9f659949f51267e802ffbf9 /source3/ubiqx/Makefile | |
parent | df4afea583a8b53aca46e15dcc75bba1af731f9f (diff) | |
download | samba-5619b53921aca62fea163399fd0ca1915e50cc11.tar.gz samba-5619b53921aca62fea163399fd0ca1915e50cc11.tar.bz2 samba-5619b53921aca62fea163399fd0ca1915e50cc11.zip |
Added ubi_sLinkList module which manages simple singly-linked lists.
(This used to be commit e55a3dc94a824b61a7123b080705be2271268ee4)
Diffstat (limited to 'source3/ubiqx/Makefile')
-rw-r--r-- | source3/ubiqx/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/ubiqx/Makefile b/source3/ubiqx/Makefile index 16fb454e77..369f7762bf 100644 --- a/source3/ubiqx/Makefile +++ b/source3/ubiqx/Makefile @@ -6,7 +6,8 @@ .SUFFIXES: .SUFFIXES: .c .o .h -all: ubi_AVLtree.o ubi_BinTree.o ubi_SplayTree.o ubi_dLinkList.o +all: ubi_AVLtree.o ubi_BinTree.o ubi_SplayTree.o \ + ubi_dLinkList.o ubi_sLinkList.o ubi_BinTree.o: ubi_BinTree.h @echo Compiling $*.c @@ -24,6 +25,10 @@ ubi_dLinkList.o: ubi_dLinkList.h @echo Compiling $*.c @$(CC) $(CFLAGS) -c $*.c +ubi_sLinkList.o: ubi_sLinkList.h + @echo Compiling $*.c + @$(CC) $(CFLAGS) -c $*.c + .c.o: @echo Compiling $*.c @$(CC) $(CFLAGS) -c $*.c |