X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fwfcqueue%2FMakefile;h=317985d830572bc2affbb3534d59cbd9b5773544;hb=HEAD;hp=98b9def39def20722686d5789f359d20ae0954a0;hpb=8f09dfa72762669a41b322388a7c15ee010265f0;p=urcu.git diff --git a/doc/examples/wfcqueue/Makefile b/doc/examples/wfcqueue/Makefile index 98b9def..317985d 100644 --- a/doc/examples/wfcqueue/Makefile +++ b/doc/examples/wfcqueue/Makefile @@ -1,23 +1,16 @@ -# 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_wfcq_enqueue - $(MAKE) -f Makefile.cds_wfcq_dequeue - $(MAKE) -f Makefile.cds_wfcq_splice + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_enqueue + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_dequeue + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_splice .PHONY: clean clean: - $(MAKE) -f Makefile.cds_wfcq_enqueue clean - $(MAKE) -f Makefile.cds_wfcq_dequeue clean - $(MAKE) -f Makefile.cds_wfcq_splice clean + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_enqueue clean + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_dequeue clean + $(AM_V_at)$(MAKE) -f Makefile.cds_wfcq_splice clean