head	1.1;
branch	1.1.1;
access;
symbols
	netbsd-11-0-RC4:1.1.1.1
	netbsd-11-0-RC3:1.1.1.1
	netbsd-11-0-RC2:1.1.1.1
	netbsd-11-0-RC1:1.1.1.1
	perseant-exfatfs-base-20250801:1.1.1.1
	netbsd-11:1.1.1.1.0.2
	netbsd-11-base:1.1.1.1
	liburcu-0-15-0:1.1.1.1
	URCU:1.1.1;
locks; strict;
comment	@# @;


1.1
date	2025.01.17.16.00.47;	author christos;	state Exp;
branches
	1.1.1.1;
next	;
commitid	oqxVhS0BRhPW2RFF;

1.1.1.1
date	2025.01.17.16.00.47;	author christos;	state Exp;
branches;
next	;
commitid	oqxVhS0BRhPW2RFF;


desc
@@



1.1
log
@Initial revision
@
text
@# 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.

LOCAL_CFLAGS := -g -O2 -Wall
AM_V_P := :

all: $(BINARY)

$(BINARY): $(OBJECTS)
	@@verbose="$(AM_V_P)"; if [ "x$$verbose" = "x" ]; then verbose=":"; fi; \
		if $$verbose; then set -x; else echo "  CCLD     $@@"; fi; \
		$(CC) $(LOCAL_CFLAGS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
		-o $@@ $(OBJECTS) $(LIBS)

$(OBJECTS): $(SOURCES) $(DEPS)
	@@verbose="$(AM_V_P)"; if [ "x$$verbose" = "x" ]; then verbose=":"; fi; \
		if $$verbose; then set -x; else echo "  CC       $@@"; fi; \
		$(CC) $(LOCAL_CFLAGS) $(AM_CFLAGS) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) \
		-c -o $@@ $(SOURCES)

.PHONY: clean
clean:
	rm -f *.o $(BINARY)
@


1.1.1.1
log
@Import userspace-rcu-0.15.0 from https://liburcu.org/ needed by bind-9.20.4.
This is a userspace implentation of the read/copy/update synchronization
mechanism described in https://docs.kernel.org/RCU/whatisRCU.html.
@
text
@@
