Stripping binary from unneeded data

This commit is contained in:
Phuntsok Drak-pa 2019-08-22 17:56:58 +02:00
parent 766e9ceb41
commit e863923b0d
1 changed files with 3 additions and 0 deletions

View File

@ -1,9 +1,12 @@
all:
@mkdir -p build
@cd build && pwd && cmake -DCMAKE_BUILD_TYPE=Release .. && make
@strip bin/project_lzw
release:
@mkdir -p build
@cd build && pwd && cmake -DCMAKE_BUILD_TYPE=Release .. && make
@strip bin/projet_lzw
debug:
@mkdir -p build