diff options
Diffstat (limited to 'source3/ubiqx/Makefile')
-rw-r--r-- | source3/ubiqx/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/source3/ubiqx/Makefile b/source3/ubiqx/Makefile new file mode 100644 index 0000000000..16fb454e77 --- /dev/null +++ b/source3/ubiqx/Makefile @@ -0,0 +1,32 @@ +########################################################################### +# 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_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 + +.c.o: + @echo Compiling $*.c + @$(CC) $(CFLAGS) -c $*.c + +clean: + rm -f core *.o *~ |