Don't need it any more.
authorChristopher R. Hertel <crh@samba.org>
Thu, 16 Oct 1997 01:06:12 +0000 (01:06 +0000)
committerChristopher R. Hertel <crh@samba.org>
Thu, 16 Oct 1997 01:06:12 +0000 (01:06 +0000)
source/ubiqx/Makefile [deleted file]

diff --git a/source/ubiqx/Makefile b/source/ubiqx/Makefile
deleted file mode 100644 (file)
index 369f776..0000000
+++ /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 *~