X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=Makefile.in;h=e416d53e261a01dc13f85d6218561b3d37a33c81;hp=87569955ddb5c835af72bebb1d82b39902e2f674;hb=b71d1e5ef301b21c2bb33c1a205c971b0a51b769;hpb=00f1ce3f3871c3148c74358e3bc9ae6f089c916a diff --git a/Makefile.in b/Makefile.in index 87569955..e416d53e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -181,6 +181,17 @@ random_selector_command_list.h: random_selector.cmd echo 'extern struct server_command random_selector_cmds[];' > $@ ./command_util.sh proto < $< >> $@ +playlist_selector_command_list.c: playlist_selector.cmd playlist_selector_command_list.h + echo '#include "server.h"' > $@ + echo '#include "user_list.h"' >> $@ + echo '#include "playlist_selector_command_list.h"' >> $@ + echo 'struct server_command playlist_selector_cmds[] = {' >>$@ + ./command_util.sh array < $< >>$@ + echo '{.name = NULL}};' >> $@ +playlist_selector_command_list.h: playlist_selector.cmd + echo 'extern struct server_command playlist_selector_cmds[];' > $@ + ./command_util.sh proto < $< >> $@ + ortp_recv.o: ortp_recv.c $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ortp_cppflags@ $<