1 # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers (at] efficios.com> 2 # 3 # SPDX-License-Identifier: MIT 4 5 # This makefile is purposefully kept simple to support GNU and BSD make. 6 7 all: 8 $(AM_V_at)$(MAKE) -f Makefile.cds_list_add_rcu 9 $(AM_V_at)$(MAKE) -f Makefile.cds_list_add_tail_rcu 10 $(AM_V_at)$(MAKE) -f Makefile.cds_list_del_rcu 11 $(AM_V_at)$(MAKE) -f Makefile.cds_list_for_each_rcu 12 $(AM_V_at)$(MAKE) -f Makefile.cds_list_for_each_entry_rcu 13 $(AM_V_at)$(MAKE) -f Makefile.cds_list_replace_rcu 14 15 .PHONY: clean 16 clean: 17 $(AM_V_at)$(MAKE) -f Makefile.cds_list_add_rcu clean 18 $(AM_V_at)$(MAKE) -f Makefile.cds_list_add_tail_rcu clean 19 $(AM_V_at)$(MAKE) -f Makefile.cds_list_del_rcu clean 20 $(AM_V_at)$(MAKE) -f Makefile.cds_list_for_each_rcu clean 21 $(AM_V_at)$(MAKE) -f Makefile.cds_list_for_each_entry_rcu clean 22 $(AM_V_at)$(MAKE) -f Makefile.cds_list_replace_rcu clean 23