Home | History | Annotate | Line # | Download | only in rculfhash
      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 = cds_lfht_lookup
      8  1.1  christos 
      9  1.1  christos SOURCES = $(EXAMPLE_NAME).c
     10  1.1  christos DEPS = jhash.h
     11  1.1  christos OBJECTS = $(EXAMPLE_NAME).o
     12  1.1  christos BINARY = $(EXAMPLE_NAME)
     13  1.1  christos LIBS = -lurcu-cds -lurcu
     14  1.1  christos 
     15  1.1  christos include ../Makefile.examples.template
     16