Add STR playback example

This commit is contained in:
ABelliqueux 2021-07-23 20:13:38 +02:00
parent d3e5674a77
commit 4a4d88dcbc

View File

@ -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