X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fdist-files%2FMakefile;h=08f37283b65bf06b76bf17a912331d6eaa91c44b;hb=HEAD;hp=4006613550dc6dad4e8fbc4ae4c0a7490bd8f8a4;hpb=d4b7140809acb8a9429fa97a4620c96674bd0c3c;p=urcu.git diff --git a/doc/examples/dist-files/Makefile b/doc/examples/dist-files/Makefile index 4006613..676d9b3 100644 --- a/doc/examples/dist-files/Makefile +++ b/doc/examples/dist-files/Makefile @@ -1,31 +1,26 @@ -# 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) -C hlist - $(MAKE) -C list - $(MAKE) -C urcu-flavors - $(MAKE) -C wfcqueue - $(MAKE) -C rculfqueue - $(MAKE) -C wfstack - $(MAKE) -C lfstack + $(AM_V_at)$(MAKE) -C hlist + $(AM_V_at)$(MAKE) -C list + $(AM_V_at)$(MAKE) -C urcu-flavors + $(AM_V_at)$(MAKE) -C wfcqueue + $(AM_V_at)$(MAKE) -C rculfqueue + $(AM_V_at)$(MAKE) -C wfstack + $(AM_V_at)$(MAKE) -C lfstack + $(AM_V_at)$(MAKE) -C rculfhash .PHONY: clean clean: - $(MAKE) -C hlist clean - $(MAKE) -C list clean - $(MAKE) -C urcu-flavors clean - $(MAKE) -C wfcqueue clean - $(MAKE) -C rculfqueue clean - $(MAKE) -C wfstack clean - $(MAKE) -C lfstack clean + $(AM_V_at)$(MAKE) -C hlist clean + $(AM_V_at)$(MAKE) -C list clean + $(AM_V_at)$(MAKE) -C urcu-flavors clean + $(AM_V_at)$(MAKE) -C wfcqueue clean + $(AM_V_at)$(MAKE) -C rculfqueue clean + $(AM_V_at)$(MAKE) -C wfstack clean + $(AM_V_at)$(MAKE) -C lfstack clean + $(AM_V_at)$(MAKE) -C rculfhash clean