X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=Makefile.in;h=4d1c23239b5787d5ff9d55ed8837d830bab02dda;hp=3755e591404d543c54c72af7015c7317c27b6cea;hb=d02f88dfc3911262174afe6017e04d70e8557a7a;hpb=3b2ee202452ef44ff8bcec442b986531533cc43f diff --git a/Makefile.in b/Makefile.in index 3755e591..4d1c2323 100644 --- a/Makefile.in +++ b/Makefile.in @@ -141,6 +141,10 @@ $(man_dir)/para_audiod.1: para_audiod audiod_command_list.man | $(man_dir) @[ -z "$(Q)" ] || echo 'MAN $<' $(Q) $(HELP2MAN) -h --detailed-help -N -i audiod_command_list.man ./para_audiod > $@ +$(man_dir)/para_play.1: para_play play_command_list.man | $(man_dir) + @[ -z "$(Q)" ] || echo 'MAN $<' + $(Q) $(HELP2MAN) -h --detailed-help -N -i play_command_list.man ./para_play > $@ + $(man_dir)/%.1: % | $(man_dir) @[ -z "$(Q)" ] || echo 'MAN $<' $(Q) $(HELP2MAN) -h --detailed-help -N ./$< > $@ @@ -219,7 +223,7 @@ $(dep_dir)/%.d: %.c | $(dep_dir) all_objs := @recv_objs@ @filter_objs@ @client_objs@ @gui_objs@ \ @audiod_objs@ @audioc_objs@ @fade_objs@ @server_objs@ \ - @write_objs@ @afh_objs@ + @write_objs@ @afh_objs@ @play_objs@ deps := $(addprefix $(dep_dir)/, $(all_objs:.o=.d)) recv_objs := $(addprefix $(object_dir)/, @recv_objs@) @@ -232,6 +236,7 @@ fade_objs := $(addprefix $(object_dir)/, @fade_objs@) server_objs := $(addprefix $(object_dir)/, @server_objs@) write_objs := $(addprefix $(object_dir)/, @write_objs@) afh_objs := $(addprefix $(object_dir)/, @afh_objs@) +play_objs := $(addprefix $(object_dir)/, @play_objs@) ifeq ($(findstring clean, $(MAKECMDGOALS)),) -include $(deps) @@ -277,6 +282,10 @@ para_afh: $(afh_objs) @[ -z "$(Q)" ] || echo 'LD $@' $(Q) $(CC) $(LDFLAGS) -o $@ $(afh_objs) @afh_ldflags@ +para_play: $(play_objs) + @[ -z "$(Q)" ] || echo 'LD $@' + $(Q) $(CC) $(LDFLAGS) -o $@ $(play_objs) @play_ldflags@ + clean: @[ -z "$(Q)" ] || echo 'CLEAN' $(Q) rm -f @executables@