Skip to content

Commit 234212a

Browse files
committed
remove strip from Makefile
1 parent 86ae4a3 commit 234212a

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ all: release
2929
# Release target
3030
release: CFLAGS = $(RELEASE_CFLAGS)
3131
release: CXXFLAGS = $(RELEASE_CXXFLAGS)
32-
release: $(TARGETS_C) $(TARGETS_CPP) strip
32+
release: $(TARGETS_C) $(TARGETS_CPP)
3333
@echo "Release builds were compiled, can be found in the binaries folder"
3434

3535
# Debug target
@@ -110,8 +110,3 @@ ninja:
110110
fi
111111
@cmake -S . -B build -G Ninja
112112
@cd $(BUILD_DIR) && ninja
113-
114-
strip:
115-
@strip --strip-all $(TARGETS_C) $(TARGETS_CPP)
116-
@echo "Stripping is done"
117-

0 commit comments

Comments
 (0)