Skip to content

Commit

Permalink
change linux binary name to snap-aligner
Browse files Browse the repository at this point in the history
  • Loading branch information
bolosky committed Apr 29, 2015
1 parent 10c76e3 commit 52d4556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ obj
/unit_tests
/SNAPCommand
/SNAP
/snap-aligner
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ALL_OBJ = $(LIB_OBJ) $(SNAP_OBJ) $(TEST_OBJ) $(SNAPCOMMAND_OBJ)

DEPS = $(pathsubst %.o, %.d, $(ALL_OBJ))

EXES = SNAP unit_tests SNAPCommand
EXES = snap-aligner unit_tests SNAPCommand

default: $(EXES)

Expand All @@ -53,7 +53,7 @@ default: $(EXES)
$(OBJS): %.o : %.cpp
$(CXX) -o $@ $(CXXFLAGS) -c $<

SNAP: $(LIB_OBJ) $(SNAP_OBJ)
snap-aligner: $(LIB_OBJ) $(SNAP_OBJ)
$(CXX) -o $@ $(CXXFLAGS) -Itests $(LDFLAGS) $^ $(LIBS)

SNAPCommand: $(LIB_OBJ) $(SNAPCOMMAND_OBJ)
Expand All @@ -74,6 +74,6 @@ unit_tests: $(LIB_OBJ) $(TEST_OBJ)
$(CXX) -o $@ $(CXXFLAGS) -Itests $(LDFLAGS) $^ $(LIBS)

clean:
rm -f $(ALL_OBJ) $(DEPS) $(EXES) snap
rm -f $(ALL_OBJ) $(DEPS) $(EXES) snap SNAP

.phony: clean default

1 comment on commit 52d4556

@alpinemountain
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a pull request to change the Windows binary name as well. amplab#64

Please sign in to comment.