X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fhlist%2FMakefile;h=c06be16a6666ee94458c371c8925d887a3d983df;hb=1c87adb3dde9011cc0ac576b5ec622a7c845a06a;hp=d705daca70d7a3b5a31d3227ddd9ddf8a1cee04f;hpb=474190bf1a9025850c14aa67eb88ba9815bb74f4;p=urcu.git diff --git a/doc/examples/hlist/Makefile b/doc/examples/hlist/Makefile index d705dac..c06be16 100644 --- a/doc/examples/hlist/Makefile +++ b/doc/examples/hlist/Makefile @@ -1,25 +1,18 @@ -# Copyright (C) 2013 Mathieu Desnoyers -# -# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED -# OR IMPLIED. ANY USE IS AT YOUR OWN RISK. -# -# Permission is hereby granted to use or copy this program for any -# purpose, provided the above notices are retained on all copies. -# Permission to modify the code and to distribute modified code is -# granted, provided the above notices are retained, and a notice that -# the code was modified is included with the above copyright notice. +# SPDX-FileCopyrightText: 2013 Mathieu Desnoyers # +# SPDX-License-Identifier: MIT + # This makefile is purposefully kept simple to support GNU and BSD make. all: - $(MAKE) -f Makefile.cds_hlist_add_head_rcu - $(MAKE) -f Makefile.cds_hlist_del_rcu - $(MAKE) -f Makefile.cds_hlist_for_each_rcu - $(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_add_head_rcu + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_del_rcu + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_rcu + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu .PHONY: clean clean: - $(MAKE) -f Makefile.cds_hlist_add_head_rcu clean - $(MAKE) -f Makefile.cds_hlist_del_rcu clean - $(MAKE) -f Makefile.cds_hlist_for_each_rcu clean - $(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu clean + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_add_head_rcu clean + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_del_rcu clean + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_rcu clean + $(AM_V_at)$(MAKE) -f Makefile.cds_hlist_for_each_entry_rcu clean