diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-21 23:28:36 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-21 23:28:36 +0200 |
| commit | bc3850e7d0411c830fb490b3f6d9e0718c564f81 (patch) | |
| tree | 23ee340f3bae9aea1316bb80b7b450ebb0fe1afa | |
| parent | 60ae6cfdfed5450dac9dd4209685a02b3391eb0f (diff) | |
| download | kristall-bc3850e7d0411c830fb490b3f6d9e0718c564f81.tar.gz | |
Continues to improve Makefile. Thanks styan
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ # Install to /usr/local unless otherwise specified, such as `make PREFIX=/app` -PREFIX=/usr/local +PREFIX?=/usr/local # What to run to install various files -INSTALL=install -D +INSTALL?=install # Run to install the actual binary -INSTALL_PROGRAM=$(INSTALL) +INSTALL_PROGRAM=$(INSTALL) -m 755 # Run to install application data, with differing permissions INSTALL_DATA=$(INSTALL) -m 644 @@ -17,7 +17,7 @@ kristall: build/kristall build/kristall: src/* mkdir -p build - cd build && qmake ../src/kristall.pro && $(MAKE) + cd build && qmake ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) install: kristall # Install icons |
