Linux: Fix USE_UCONTEXT detection
[openafs.git] / tests / auth / Makefile.in
index 016a781..8afde8b 100644 (file)
@@ -4,7 +4,7 @@ abs_top_builddir=@abs_top_builddir@
 include @TOP_OBJDIR@/src/config/Makefile.config
 include @TOP_OBJDIR@/src/config/Makefile.pthread
 
-TESTS = superuser-t keys-t
+TESTS = authcon-t superuser-t keys-t
 
 MODULE_CFLAGS=-I$(srcdir)/..
 
@@ -18,12 +18,17 @@ MODULE_LIBS =       ../tap/libtap.a \
                $(LIB_rfc3961) $(LIB_roken) -lafsutil\
                $(XLIBS)
 
-superuser-t: superuser-t.o test.cs.o test.ss.o test.xdr.o
-       $(AFS_LDRULE) superuser-t.o test.cs.o test.ss.o test.xdr.o \
+authcon-t: authcon-t.o common.o
+       $(AFS_LDRULE) authcon-t.o common.o \
                $(MODULE_LIBS)
 
-keys-t: keys-t.o
-       $(AFS_LDRULE) keys-t.o $(MODULE_LIBS)
+superuser-t: superuser-t.o common.o test.cs.o test.ss.o test.xdr.o
+       $(AFS_LDRULE) superuser-t.o common.o \
+               test.cs.o test.ss.o test.xdr.o \
+               $(MODULE_LIBS)
+
+keys-t: keys-t.o common.o
+       $(AFS_LDRULE) keys-t.o common.o $(MODULE_LIBS)
 
 writekeyfile: writekeyfile.o
        $(AFS_LDRULE) writekeyfile.o $(MODULE_LIBS)
@@ -40,8 +45,8 @@ test.xdr.c: test.xg
 test.h: test.xg
        $(RXGEN) -A -x -h -o $@ $(srcdir)/test.xg
 
-superuser-t.o: test.h
+superuser-t.o: test.h common.h
 
 clean:
        rm -f *.o *.cs.c *.ss.c *.xdr.c test.h \
-               writekeyfile superuser-t keys-t
+               writekeyfile $(TESTS)