aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cbc4a0e..141cb05 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
CC := gcc
-INSTALL := install
+INSTALL_DIR := install -d
+INSTALL_BIN := install -s
CFLAGS := -O2 -g -Wall -ffunction-sections -fdata-sections -ffast-math -fomit-frame-pointer -fexpensive-optimizations -Wl,--gc-sections
LDFLAGS :=
RM := rm -rf
@@ -72,8 +73,8 @@ clean:
-@echo ' '
install: $(TARGETS)
- $(INSTALL) -d $(PREFIX)/usr/bin
- $(INSTALL) -s $(TARGETS) $(PREFIX)/usr/bin
+ $(INSTALL_DIR) -d $(PREFIX)/usr/bin
+ $(INSTALL_BIN) -s $(TARGETS) $(PREFIX)/usr/bin
rebuild: clean all