1 1.1 christos # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers (at] efficios.com> 2 1.1 christos # 3 1.1 christos # SPDX-License-Identifier: MIT 4 1.1 christos 5 1.1 christos # This makefile is purposefully kept simple to support GNU and BSD make. 6 1.1 christos 7 1.1 christos all: 8 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.qsbr 9 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.mb 10 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.membarrier 11 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.bp 12 1.1 christos 13 1.1 christos .PHONY: clean 14 1.1 christos clean: 15 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.qsbr clean 16 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.mb clean 17 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.membarrier clean 18 1.1 christos $(AM_V_at)$(MAKE) -f Makefile.bp clean 19