summaryrefslogtreecommitdiff
path: root/lib/talloc/talloc.mk
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-09-22 00:20:39 +0200
committerStefan Metzmacher <metze@samba.org>2008-09-22 00:20:39 +0200
commit2019a98e4603ad5e201c9ed297baafc3373c1fba (patch)
tree09f0286c5b3aa907637303c91037afb98aa30813 /lib/talloc/talloc.mk
parent2c7cbb6b1d54c0463fd788002190ee673179f7c1 (diff)
downloadsamba-2019a98e4603ad5e201c9ed297baafc3373c1fba.tar.gz
samba-2019a98e4603ad5e201c9ed297baafc3373c1fba.tar.bz2
samba-2019a98e4603ad5e201c9ed297baafc3373c1fba.zip
lib/talloc: move main() out of testsuite.c
metze
Diffstat (limited to 'lib/talloc/talloc.mk')
-rw-r--r--lib/talloc/talloc.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/talloc/talloc.mk b/lib/talloc/talloc.mk
index 23331b6365..f183cd57ef 100644
--- a/lib/talloc/talloc.mk
+++ b/lib/talloc/talloc.mk
@@ -5,8 +5,8 @@ TALLOC_SONAME = libtalloc.$(SHLIBEXT).1
all:: libtalloc.a $(TALLOC_SOLIB) testsuite
-testsuite:: $(LIBOBJ) testsuite.o
- $(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS)
+testsuite:: $(LIBOBJ) testsuite.o testsuite_main.o
+ $(CC) $(CFLAGS) -o testsuite testsuite.o testsuite_main.o $(LIBOBJ) $(LIBS)
libtalloc.a: $(LIBOBJ)
ar -rv $@ $(LIBOBJ)
@@ -28,7 +28,7 @@ install:: all
doc:: talloc.3 talloc.3.html
clean::
- rm -f *~ $(LIBOBJ) $(TALLOC_SOLIB) libtalloc.a testsuite testsuite.o *.gc?? talloc.3 talloc.3.html
+ rm -f *~ $(LIBOBJ) $(TALLOC_SOLIB) libtalloc.a testsuite testsuite.o testsuite_main.o *.gc?? talloc.3 talloc.3.html
test:: testsuite
./testsuite