Skip to content

Commit 52d4556

Browse files
committed
change linux binary name to snap-aligner
1 parent 10c76e3 commit 52d4556

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ obj
4444
/unit_tests
4545
/SNAPCommand
4646
/SNAP
47+
/snap-aligner

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ALL_OBJ = $(LIB_OBJ) $(SNAP_OBJ) $(TEST_OBJ) $(SNAPCOMMAND_OBJ)
4444

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

47-
EXES = SNAP unit_tests SNAPCommand
47+
EXES = snap-aligner unit_tests SNAPCommand
4848

4949
default: $(EXES)
5050

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

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

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

7676
clean:
77-
rm -f $(ALL_OBJ) $(DEPS) $(EXES) snap
77+
rm -f $(ALL_OBJ) $(DEPS) $(EXES) snap SNAP
7878

7979
.phony: clean default

0 commit comments

Comments
 (0)