X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fdist-files%2FMakefile;h=676d9b30d7455e9e86eebad4736a15f79f6fb06c;hb=HEAD;hp=cb380b782ca57449edd88aa047a08e8961d81871;hpb=f7e7a1b86b06da9d2cef60e43039fa8c8ae6479a;p=urcu.git diff --git a/doc/examples/dist-files/Makefile b/doc/examples/dist-files/Makefile index cb380b7..676d9b3 100644 --- a/doc/examples/dist-files/Makefile +++ b/doc/examples/dist-files/Makefile @@ -1,33 +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 - $(MAKE) -C rculfhash + $(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 - $(MAKE) -C rculfhash 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