X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=source%2Fubiqx%2FMakefile;h=369f7762bfebb84c337362f8b2b83615355430aa;hp=16fb454e77d1e6fa335fa4e07c3e670cbb501de3;hb=e55a3dc94a824b61a7123b080705be2271268ee4;hpb=96b17b829fc787c15cd366eca604c09d68b5b900 diff --git a/source/ubiqx/Makefile b/source/ubiqx/Makefile index 16fb454e77d..369f7762bfe 100644 --- a/source/ubiqx/Makefile +++ b/source/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