Home | History | Annotate | Line # | Download | only in rculfhash
      1 # SPDX-FileCopyrightText: 2013 Mathieu Desnoyers <mathieu.desnoyers (at] efficios.com>
      2 #
      3 # SPDX-License-Identifier: MIT
      4 
      5 # This makefile is purposefully kept simple to support GNU and BSD make.
      6 
      7 all:
      8 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add
      9 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add_unique
     10 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add_replace
     11 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_del
     12 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_destroy
     13 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_lookup
     14 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_for_each_entry_duplicate
     15 
     16 .PHONY: clean
     17 clean:
     18 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add clean
     19 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add_unique clean
     20 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_add_replace clean
     21 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_del clean
     22 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_destroy clean
     23 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_lookup clean
     24 	$(AM_V_at)$(MAKE) -f Makefile.cds_lfht_for_each_entry_duplicate clean
     25