aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--README.md1
2 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6705c3a..bd67f31 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,7 @@ all: $(BIN)
$(BIN): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS)
+ strip $(BIN)
noice.o: util.h config.h
strlcat.o: util.h
diff --git a/README.md b/README.md
index 9f8e03c..63009e4 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,7 @@ I chose to fork noice because:
- Use `-O3` for compilation, fixed warnings
- Added compilation flag `-march=native`
- Remove generated config.h on `make clean`
+ - strip the final binary
### Installation