summaryrefslogtreecommitdiffstats
path: root/source/ubiqx
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
commit905b2b9562a8c82696d38024ec42aa38ca990277 (patch)
treec314180d632e4d98cbc8e41e0e5409ba4f7d3adf /source/ubiqx
parent1dafef88871338f06dbcbbb67ce3bbbb460d7bb6 (diff)
downloadsamba-905b2b9562a8c82696d38024ec42aa38ca990277.tar.gz
samba-905b2b9562a8c82696d38024ec42aa38ca990277.tar.xz
samba-905b2b9562a8c82696d38024ec42aa38ca990277.zip
Don't need it any more.
Diffstat (limited to 'source/ubiqx')
-rw-r--r--source/ubiqx/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/ubiqx/Makefile b/source/ubiqx/Makefile
deleted file mode 100644
index 369f7762bfe..00000000000
--- a/source/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 *~