1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

clients: do not build opal code by default as it compiles only on 32bit systems

This commit is contained in:
Steffen Vogel 2017-11-17 17:56:47 +01:00
parent 3fc3c7c992
commit 605fb85dd7
2 changed files with 8 additions and 8 deletions

View file

@ -23,14 +23,10 @@
CLIENTS =
include $(SRCDIR)/clients/python/Makefile.inc
ifneq ($(wildcard $(SRCDIR)/thirdparty/libopal/include/opal/AsyncApi.h),)
include $(SRCDIR)/clients/opal/Makefile.inc
endif
include $(SRCDIR)/clients/opal/Makefile.inc
clients: $(addprefix clients-,$(CLIENTS))
clean-clients: $(addprefix clean-clients-,$(CLIENTS))
install-clients: $(addprefix install-clients-,$(CLIENTS))
clients: $(addprefix clients-,$(filter-out opal,$(CLIENTS)))
clean-clients: $(addprefix clean-clients-,$(filter-out opal,$(CLIENTS)))
install-clients: $(addprefix install-clients-,$(filter-out opal,$(CLIENTS)))
.PHONY: clients clean-clients install-clients

View file

@ -20,6 +20,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###################################################################################
ifneq ($(wildcard $(SRCDIR)/thirdparty/libopal/include/opal/AsyncApi.h),)
CLIENTS += opal
ASYNCIP_PATH = $(SRCDIR)/clients/opal/models/send_receive
@ -40,3 +42,5 @@ install-clients-opal:
$(MAKE) -C $(ASYNCIP_PATH) -f Makefile.mk install $(ASYNCIP_OPTS)
.PHONY: clients-opal clean-clients-opal install-clients-opal
endif