aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2011-02-17 22:14:23 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2011-02-17 22:14:23 -0500
commit3e2ce9a7d1b33340651b7cc0e8d3ff14bbe1e868 (patch)
tree9939fa09cc15ae86d7e870623ec28043de585d43 /Makefile
parentb9be4a00cd91015a0091ed5173f40538be5f4e09 (diff)
Add tool for sorting binary Feather-Trace streams
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index afff4dc..4214b9a 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ CPPFLAGS += -Iinclude/
20# ############################################################################## 20# ##############################################################################
21# Targets 21# Targets
22 22
23all = ftcat ft2csv ftdump 23all = ftcat ft2csv ftdump ftsort
24 24
25.PHONY: all clean 25.PHONY: all clean
26all: ${all} 26all: ${all}
@@ -36,5 +36,8 @@ ft2csv: ${obj-ft2csv}
36obj-ftdump = ftdump.o timestamp.o mapping.o 36obj-ftdump = ftdump.o timestamp.o mapping.o
37ftdump: ${obj-ftdump} 37ftdump: ${obj-ftdump}
38 38
39obj-ftsort = ftsort.o timestamp.o mapping.o
40ftsort: ${obj-ftsort}
41
39# dependency discovery 42# dependency discovery
40include ${LIBLITMUS}/inc/depend.makefile 43include ${LIBLITMUS}/inc/depend.makefile