]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - Makefile.in
make the playlist selector use command_util.sh
[paraslash.git] / Makefile.in
index d7e28568af3e7c6c22a609a6cd27504ccd22e2d1..e416d53e261a01dc13f85d6218561b3d37a33c81 100644 (file)
@@ -148,6 +148,50 @@ grab_client.cmdline.h grab_client.cmdline.c: grab_client.ggo
                --set-package="para_$(subst .cmdline,,$(*F))" \
                --set-version="$V"  < $<
 
                --set-package="para_$(subst .cmdline,,$(*F))" \
                --set-version="$V"  < $<
 
+server_command_list.c: server.cmd server_command_list.h
+       echo '#include "server.h"' > $@
+       echo '#include "user_list.h"' >> $@
+       echo '#include "server_command_list.h"' >> $@
+       echo 'struct server_command cmd_struct[] = {' >>$@
+       ./command_util.sh array < $< >>$@
+       echo '{.name = NULL}};' >> $@
+server_command_list.h: server.cmd
+       echo 'extern struct server_command cmd_struct[];' > $@
+       ./command_util.sh proto < $< >> $@
+
+mysql_selector_command_list.c: mysql_selector.cmd mysql_selector_command_list.h
+       echo '#include "server.h"' > $@
+       echo '#include "user_list.h"' >> $@
+       echo '#include "mysql_selector_command_list.h"' >> $@
+       echo 'struct server_command cmds[] = {' >>$@
+       ./command_util.sh array < $< >>$@
+       echo '{.name = NULL}};' >> $@
+mysql_selector_command_list.h: mysql_selector.cmd
+       echo 'extern struct server_command cmds[];' > $@
+       ./command_util.sh proto < $< >> $@
+
+random_selector_command_list.c: random_selector.cmd random_selector_command_list.h
+       echo '#include "server.h"' > $@
+       echo '#include "user_list.h"' >> $@
+       echo '#include "random_selector_command_list.h"' >> $@
+       echo 'struct server_command random_selector_cmds[] = {' >>$@
+       ./command_util.sh array < $< >>$@
+       echo '{.name = NULL}};' >> $@
+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@ $<
 
 ortp_recv.o: ortp_recv.c
        $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ortp_cppflags@ $<
 
@@ -225,7 +269,7 @@ para_krell.so: $(krell_objs)
        $(CC) -Wall -fPIC @GTK_CFLAGS@ krell.o -o $@ @GTK_LIBS@ -shared
 
 clean:
        $(CC) -Wall -fPIC @GTK_CFLAGS@ krell.o -o $@ @GTK_LIBS@ -shared
 
 clean:
-       rm -f *.o $(BINARIES)
+       rm -f *.o $(BINARIES) *_command_list.*
 
 distclean: clean
        rm -f Makefile autoscan.log config.status config.log && \
 
 distclean: clean
        rm -f Makefile autoscan.log config.status config.log && \