Skip to content

Commit

Permalink
(Tup) Changed name of BAT support library for consistency
Browse files Browse the repository at this point in the history
* name changed from libbat.so to libbatSupport.so to match Autotools
  and CMake.  I would have like to go the other way, but this bug is
  blocking progress for others.

ROSE-2678
  • Loading branch information
matzke1 committed Jul 1, 2020
1 parent edeacdb commit 00cad9e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions tools/BinaryAnalysis/Tupfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ include_rules
ifeq (@(ENABLE_BINARY_ANALYSIS),yes)

# BAT support library. This is also used by tools outside ROSE
run $(tool_compile_linklib) --install -I. -o libbat batSupport.C ../../src/librose
run $(tool_compile_linklib) --install -I. -o libbatSupport batSupport.C ../../src/librose
run $(public_header) batSupport.h

# Tools
run $(tool_compile_linkexe) --install -I. bat-ana.C libbat
run $(tool_compile_linkexe) --install -I. bat-cc.C libbat
run $(tool_compile_linkexe) --install -I. bat-cfg.C libbat
run $(tool_compile_linkexe) --install -I. bat-cg.C libbat
run $(tool_compile_linkexe) --install -I. bat-container.C libbat
run $(tool_compile_linkexe) --install -I. bat-dis.C libbat
run $(tool_compile_linkexe) --install -I. bat-entropy.C libbat
run $(tool_compile_linkexe) --install -I. bat-linear.C libbat
run $(tool_compile_linkexe) --install -I. bat-lsb.C libbat
run $(tool_compile_linkexe) --install -I. bat-lsd.C libbat
run $(tool_compile_linkexe) --install -I. bat-lsf.C libbat
run $(tool_compile_linkexe) --install -I. bat-mem.C libbat
run $(tool_compile_linkexe) --install -I. bat-prop.C libbat
run $(tool_compile_linkexe) --install -I. bat-stack-deltas.C libbat
run $(tool_compile_linkexe) --install -I. bat-trace.C libbat
run $(tool_compile_linkexe) --install -I. bat-ana.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-cc.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-cfg.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-cg.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-container.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-dis.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-entropy.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-linear.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-lsb.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-lsd.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-lsf.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-mem.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-prop.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-stack-deltas.C libbatSupport
run $(tool_compile_linkexe) --install -I. bat-trace.C libbatSupport
: bat-dis |> cp -p %f %o |> bat-dis-simple $(ROOT)/$(INSTALL_STAGING)/bin/<staging>

# Tests
Expand Down

0 comments on commit 00cad9e

Please sign in to comment.