diff options
author | Rob Landley <rob@landley.net> | 2005-12-15 07:25:54 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-15 07:25:54 +0000 |
commit | e0c418e13b005908da492ae2151096e8f2246287 (patch) | |
tree | e03f9d292096eedba0bedca225db5f89938a9630 /Rules.mak | |
parent | 164c5c80ba122a6ed71a29d41730c802750a5ae1 (diff) | |
download | busybox-w32-e0c418e13b005908da492ae2151096e8f2246287.tar.gz busybox-w32-e0c418e13b005908da492ae2151096e8f2246287.tar.bz2 busybox-w32-e0c418e13b005908da492ae2151096e8f2246287.zip |
The rest of Yann E. Morin's install revamp.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -205,4 +205,16 @@ endif | |||
205 | # have a chance of winning. | 205 | # have a chance of winning. |
206 | CFLAGS += $(CFLAGS_EXTRA) | 206 | CFLAGS += $(CFLAGS_EXTRA) |
207 | 207 | ||
208 | #------------------------------------------------------------ | ||
209 | # Installation options | ||
210 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y) | ||
211 | INSTALL_OPTS=--hardlinks | ||
212 | endif | ||
213 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y) | ||
214 | INSTALL_OPTS=--symlinks | ||
215 | endif | ||
216 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y) | ||
217 | INSTALL_OPTS= | ||
218 | endif | ||
219 | |||
208 | .PHONY: dummy | 220 | .PHONY: dummy |