File: Makefile.cds_lfq_dequeue

package info (click to toggle)
liburcu 0.15.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,356 kB
  • sloc: ansic: 23,361; xml: 23,227; sh: 6,480; makefile: 1,045; cpp: 15
file content (14 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
#
# SPDX-License-Identifier: MIT

# This makefile is purposefully kept simple to support GNU and BSD make.

EXAMPLE_NAME = cds_lfq_dequeue

SOURCES = $(EXAMPLE_NAME).c
OBJECTS = $(EXAMPLE_NAME).o
BINARY = $(EXAMPLE_NAME)
LIBS = -lurcu-cds -lurcu

include ../Makefile.examples.template