1 1.1 christos # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers (a] efficios.com> 2 1.1 christos # 3 1.1 christos # SPDX-License-Identifier: MIT 4 1.1 christos 5 1.1 christos # This makefile is purposefully kept simple to support GNU and BSD make. 6 1.1 christos 7 1.1 christos EXAMPLE_NAME = membarrier 8 1.1 christos 9 1.1 christos SOURCES = $(EXAMPLE_NAME).c 10 1.1 christos OBJECTS = $(EXAMPLE_NAME).o 11 1.1 christos BINARY = $(EXAMPLE_NAME) 12 1.1 christos LIBS = -lurcu 13 1.1 christos 14 1.1 christos include ../Makefile.examples.template 15