Update Makefile

This commit is contained in:
ABelliqueux 2021-07-21 15:03:16 +02:00
parent e9bfca654d
commit f49bd153d7

View File

@ -40,6 +40,8 @@ hello_cdda:
$(MAKE) -C hello_cdda all
hello_xa:
$(MAKE) -C hello_xa all
hello_bs:
$(MAKE) -C hello_bs all
clean:
$(MAKE) -C hello_2pads clean
@ -64,6 +66,7 @@ clean:
$(MAKE) -C hello_cdda clean cleansub
$(MAKE) -C hello_cd cleansub
$(MAKE) -C hello_xa cleansub
$(MAKE) -C hello_bs cleansub
all:
$(MAKE) -C hello_2pads
@ -87,7 +90,8 @@ all:
$(MAKE) -C hello_cd all
$(MAKE) -C hello_cdda all
$(MAKE) -C hello_xa all
$(MAKE) -C hello_bs 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 \
.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 \
clean all