From 3dbfec637b2ae7028896074cf330d0d7aaa80403 Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Thu, 19 May 2005 03:39:55 +0000 Subject: [PATCH] EXTRA_OBJS in dependency order in unloadAll test --- examples/unloadAll/null/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/unloadAll/null/Makefile b/examples/unloadAll/null/Makefile index 83999ad..d11eee1 100644 --- a/examples/unloadAll/null/Makefile +++ b/examples/unloadAll/null/Makefile @@ -1,4 +1,4 @@ TEST= unloadAll/null -EXTRA_OBJS=Null.o Dep.o +EXTRA_OBJS=Dep.o Null.o TOP=../../.. include ../../build.mk