diff --git a/Makefile b/Makefile index 20366a7..eaa7b5e 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,8 @@ hello_tile: $(MAKE) -C hello_tile hello_vag: $(MAKE) -C hello_vag +hello_cdda: + $(MAKE) -C hello_cdda clean: $(MAKE) -C hello_2pads clean @@ -60,6 +62,7 @@ clean: $(MAKE) -C hello_tile clean $(MAKE) -C hello_vag clean $(MAKE) -C hello_world clean + $(MAKE) -C hello_cdda clean all: $(MAKE) -C hello_2pads @@ -82,7 +85,8 @@ all: $(MAKE) -C hello_tile $(MAKE) -C hello_vag $(MAKE) -C hello_world + $(MAKE) -C hello_cdda # 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_poly_subdiv hello_rsd hello_sio hello_sprt hello_tile hello_vag hello_world \ +.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_poly_subdiv hello_rsd hello_sio hello_sprt hello_tile hello_vag hello_world hello_cdda \ clean all