X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=doc%2Fexamples%2Flist%2FMakefile;h=75076500e8c55364585901cd754fe6db5d6a3f0b;hb=05796604aee3ce40f4170b691b6126c89c2d09e6;hp=122417d5844365a3be58863e712c10430d075096;hpb=f37f1d93b55ca5f03761a840a8736613eb04f90b;p=urcu.git diff --git a/doc/examples/list/Makefile b/doc/examples/list/Makefile index 122417d..7507650 100644 --- a/doc/examples/list/Makefile +++ b/doc/examples/list/Makefile @@ -11,4 +11,13 @@ # # This makefile is purposefully kept simple to support GNU and BSD make. -include Makefile.cds_list_add_rcu +all: + $(MAKE) -f Makefile.cds_list_add_rcu + $(MAKE) -f Makefile.cds_list_add_tail_rcu + $(MAKE) -f Makefile.cds_list_del_rcu + +.PHONY: clean +clean: + $(MAKE) -f Makefile.cds_list_add_rcu clean + $(MAKE) -f Makefile.cds_list_add_tail_rcu clean + $(MAKE) -f Makefile.cds_list_del_rcu clean