Commit | Line | Data |
---|---|---|
1c87adb3 | 1 | # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
474190bf | 2 | # |
1c87adb3 MJ |
3 | # SPDX-License-Identifier: MIT |
4 | ||
474190bf MD |
5 | # This makefile is purposefully kept simple to support GNU and BSD make. |
6 | ||
7 | all: | |
dbfa8879 MJ |
8 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_add_head_rcu |
9 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_del_rcu | |
10 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_rcu | |
11 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu | |
474190bf MD |
12 | |
13 | .PHONY: clean | |
14 | clean: | |
dbfa8879 MJ |
15 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_add_head_rcu clean |
16 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_del_rcu clean | |
17 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_rcu clean | |
18 | $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu clean |