diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |