summaryrefslogtreecommitdiffstats
path: root/src/util/support/Makefile.in
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2009-09-15 06:19:32 +0000
committerKen Raeburn <raeburn@mit.edu>2009-09-15 06:19:32 +0000
commit4ed6cb59d5135ab5d9b15574f4c4923a50fc1dd7 (patch)
tree4a4d4922530056d0f0a94b9a9fe93480d84890e1 /src/util/support/Makefile.in
parent66f4ea3db7a9c1eb278b035fdae8ebea7636edb9 (diff)
downloadkrb5-4ed6cb59d5135ab5d9b15574f4c4923a50fc1dd7.tar.gz
krb5-4ed6cb59d5135ab5d9b15574f4c4923a50fc1dd7.tar.xz
krb5-4ed6cb59d5135ab5d9b15574f4c4923a50fc1dd7.zip
Test byte ordering determination and unaligned access
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22762 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/support/Makefile.in')
-rw-r--r--src/util/support/Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/util/support/Makefile.in b/src/util/support/Makefile.in
index c890a8c69..e20984a64 100644
--- a/src/util/support/Makefile.in
+++ b/src/util/support/Makefile.in
@@ -153,13 +153,17 @@ T_K5BUF_OBJS= t_k5buf.o k5buf.o $(PRINTF_ST_OBJ)
t_k5buf: $(T_K5BUF_OBJS)
$(CC_LINK) -o t_k5buf $(T_K5BUF_OBJS)
-TEST_PROGS= t_k5buf
+t_unal: t_unal.o
+ $(CC_LINK) -o t_unal t_unal.o
+
+TEST_PROGS= t_k5buf t_unal
check-unix:: $(TEST_PROGS)
./t_k5buf
+ ./t_unal
clean::
- $(RM) t_k5buf.o t_k5buf
+ $(RM) t_k5buf.o t_k5buf t_unal.o t_unal
@lib_frag@
@libobj_frag@