summaryrefslogtreecommitdiff
path: root/source4/lib/talloc/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/talloc/Makefile.in')
-rw-r--r--source4/lib/talloc/Makefile.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in
new file mode 100644
index 0000000000..ff4fc7f561
--- /dev/null
+++ b/source4/lib/talloc/Makefile.in
@@ -0,0 +1,20 @@
+#OPT = -g -ftest-coverage -fprofile-arcs
+#LIBS = -lgcov
+OPT = -O
+
+CFLAGS = $(OPT) -Wall
+
+LIBOBJ = talloc.o
+
+all: libtalloc.a testsuite
+
+testsuite: $(LIBOBJ) testsuite.o
+ $(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS)
+
+libtalloc.a: libtalloc.a($(LIBOBJ))
+
+clean:
+ rm -f *~ *.o testsuite *.gc??
+
+gcov:
+ gcov talloc.c