mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-20 22:26:23 +00:00
ib_srpt, Makefile: Align shell code
This commit is contained in:
+12
-6
@@ -5,12 +5,18 @@ ifndef PREFIX
|
||||
PREFIX=/usr/local
|
||||
endif
|
||||
|
||||
SCST_INC_DIR := $(shell if [ -e "$$PWD/../scst" ]; \
|
||||
then echo "$$PWD/../scst/include"; \
|
||||
else echo "$(DESTDIR)$(PREFIX)/include/scst"; fi)
|
||||
SCST_SYMVERS_DIR := $(shell if [ -e $$PWD/../scst ]; then \
|
||||
echo $$PWD/../scst/src; \
|
||||
else echo $(DESTDIR)$(PREFIX)/include/scst; fi)
|
||||
SCST_INC_DIR := $(shell \
|
||||
if [ -e "$$PWD/../scst" ]; then \
|
||||
echo "$$PWD/../scst/include"; \
|
||||
else \
|
||||
echo "$(DESTDIR)$(PREFIX)/include/scst"; \
|
||||
fi)
|
||||
SCST_SYMVERS_DIR := $(shell \
|
||||
if [ -e "$$PWD/../scst" ]; then \
|
||||
echo "$$PWD/../scst/src"; \
|
||||
else \
|
||||
echo "$(DESTDIR)$(PREFIX)/include/scst"; \
|
||||
fi)
|
||||
|
||||
ifeq ($(KVER),)
|
||||
ifeq ($(KDIR),)
|
||||
|
||||
Reference in New Issue
Block a user