Commit | Line | Data |
---|---|---|
1c87adb3 | 1 | # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
71ea53b1 | 2 | # |
1c87adb3 MJ |
3 | # SPDX-License-Identifier: MIT |
4 | ||
71ea53b1 MD |
5 | # This makefile is purposefully kept simple to support GNU and BSD make. |
6 | ||
6df9f02d | 7 | EXAMPLE_NAME = qsbr |
71ea53b1 MD |
8 | |
9 | SOURCES = $(EXAMPLE_NAME).c | |
10 | OBJECTS = $(EXAMPLE_NAME).o | |
11 | BINARY = $(EXAMPLE_NAME) | |
12 | LIBS = -lurcu-qsbr | |
13 | ||
14 | include ../Makefile.examples.template |