Artifact 12de73fbb24bdc75a89c889b222b52884a079d0f:
- Executable file plugins/player/Makefile — part of check-in [78372c41bb] at 2013-12-27 05:58:58 on branch trunk — initial commit: sven-0.6 (user: jamesbond size: 498)
CC=gcc OPT=-O2 DEBUG=-g CFLAGS=$(OPT) $(DEBUG) -fPIC -Wall `../../script/sven-config --cflags` LIBS= ../../libsven/.libs/libsven.so PLUGIN=player.so PLUGINDIR= `../../script/sven-config --plugin-dir` all : $(PLUGIN) install : $(PLUGIN) mkdir -p $(DESTDIR)$(PLUGINDIR) install $(PLUGIN) $(DESTDIR)$(PLUGINDIR) $(PLUGIN) : player.o $(CC) $(LIBS) -shared $^ -o $@ .c.o: $(SRCS) $(CC) $(CFLAGS) -c $^ -o $@ distclean : rm -f $(PLUGIN) *.o *.so clean : rm -f $(PLUGIN) *.o *.so