From 4a4d88dcbcad80b0f1d6646480cc07103794fcd0 Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Fri, 23 Jul 2021 20:13:38 +0200 Subject: [PATCH] Add STR playback example --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b9a1189..4a6bb8c 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,8 @@ hello_xa: $(MAKE) -C hello_xa all hello_bs: $(MAKE) -C hello_bs all +hello_str: + $(MAKE) -C hello_str all clean: $(MAKE) -C hello_2pads clean @@ -67,6 +69,7 @@ clean: $(MAKE) -C hello_cd cleansub $(MAKE) -C hello_xa cleansub $(MAKE) -C hello_bs cleansub + $(MAKE) -C hello_str cleansub all: $(MAKE) -C hello_2pads @@ -91,7 +94,8 @@ all: $(MAKE) -C hello_cdda all $(MAKE) -C hello_xa all $(MAKE) -C hello_bs all + $(MAKE) -C hello_str all # declare phony rules -.PHONY: hello_2pads hello_cube hello_cubetex hello_poly_fun hello_gte_opti hello_light hello_multivag hello_pad hello_poly hello_poly_ft hello_poly_gt hello_poly_gt_tw hello_poly_inline hello_sio hello_sprt hello_tile hello_vag hello_world hello_cdda hello_cd hello_xa hello_bs \ +.PHONY: hello_2pads hello_cube hello_cubetex hello_poly_fun hello_gte_opti hello_light hello_multivag hello_pad hello_poly hello_poly_ft hello_poly_gt hello_poly_gt_tw hello_poly_inline hello_sio hello_sprt hello_tile hello_vag hello_world hello_cdda hello_cd hello_xa hello_bs hello_str \ clean all