summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1997-10-16 01:06:12 +0000
committerChristopher R. Hertel <crh@samba.org>1997-10-16 01:06:12 +0000
commit98f6293297274ab33843da57251e42559008e841 (patch)
tree96fb19ae8873bfd308f1ab49393cb69fbaa404b8 /source3
parent50147ca41c12694b9658c15ddf4b2d8b4e1d4746 (diff)
downloadsamba-98f6293297274ab33843da57251e42559008e841.tar.gz
samba-98f6293297274ab33843da57251e42559008e841.tar.bz2
samba-98f6293297274ab33843da57251e42559008e841.zip
Don't need it any more.
(This used to be commit 905b2b9562a8c82696d38024ec42aa38ca990277)
Diffstat (limited to 'source3')
-rw-r--r--source3/ubiqx/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/source3/ubiqx/Makefile b/source3/ubiqx/Makefile
deleted file mode 100644
index 369f7762bf..0000000000
--- a/source3/ubiqx/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-###########################################################################
-# Makefile for ubiqx libraries under Samba.
-# Copyright Chris Hertel & the Samba Team 1997
-###########################################################################
-
-.SUFFIXES:
-.SUFFIXES: .c .o .h
-
-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
- @$(CC) $(CFLAGS) -c $*.c
-
-ubi_AVLtree.o: ubi_AVLtree.h ubi_BinTree.h
- @echo Compiling $*.c
- @$(CC) $(CFLAGS) -c $*.c
-
-ubi_SplayTree.o: ubi_SplayTree.h ubi_BinTree.h
- @echo Compiling $*.c
- @$(CC) $(CFLAGS) -c $*.c
-
-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
-
-clean:
- rm -f core *.o *~