about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6de20c..9de3e0d 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ PREFIX ?= /usr/local
 BIN_PREFIX ::= $(DESTDIR)$(PREFIX)/bin/taosc-
 DATA_DIR ::= $(DESTDIR)$(PREFIX)/share/taosc
 
-BIN ::= fix scout synth trace-call
+BIN ::= fix measure-stack scout synth trace-call
 DATA ::= collect collection jump patch
 
 all: $(BIN) $(DATA)
@@ -19,6 +19,9 @@ clean:
 fix: fix.m4
 	m4 -D DATA_DIR=$(DATA_DIR) $< > $@
 
+measure-stack: measure-stack.o helpers.o
+	$(CXX) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
+
 scout: scout.o helpers.o
 	$(CXX) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@