diff options
Diffstat (limited to 'source3/ubiqx/Makefile')
-rw-r--r-- | source3/ubiqx/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/ubiqx/Makefile b/source3/ubiqx/Makefile index 16fb454e77..369f7762bf 100644 --- a/source3/ubiqx/Makefile +++ b/source3/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 |