[Mplayerxp-cvslog] SF.net SVN: mplayerxp:[200] mplayerxp
Brought to you by:
olov
From: <nic...@us...> - 2012-10-25 08:11:05
|
Revision: 200 http://mplayerxp.svn.sourceforge.net/mplayerxp/?rev=200&view=rev Author: nickols_k Date: 2012-10-25 08:10:55 +0000 (Thu, 25 Oct 2012) Log Message: ----------- reorder source tree Added Paths: ----------- mplayerxp/libmpconf/Makefile mplayerxp/libplaytree/Makefile Added: mplayerxp/libmpconf/Makefile =================================================================== --- mplayerxp/libmpconf/Makefile (rev 0) +++ mplayerxp/libmpconf/Makefile 2012-10-25 08:10:55 UTC (rev 200) @@ -0,0 +1,49 @@ + +LIBNAME = libmpconf.a + +include ../mp_config.mak + +DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@ || exit; done +DO_ALL = @ for i in $(SUBDIRS); do $(MAKE) -C $$i all || exit; done + +SRCS = cfgparser.c codec-cfg.c m_option.c m_property.c m_struct.c subopt-helper.c + +OBJS = $(SRCS:.c=.o) +INCLUDE = -I. -I../ +CFLAGS = $(OPTFLAGS) $(INCLUDE) -W -Wall + +.SUFFIXES: .c .o + +.PHONY: $(SUBDIRS) + +all: $(LIBNAME) + +$(SUBDIRS): + $(DO_ALL) + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< + +$(LIBNAME): $(SUBDIRS) $(OBJS) + $(AR) r $(LIBNAME) $(OBJS) + +clean: + $(DO_MAKE) + rm -f *.o *.a *~ + +distclean: + $(DO_MAKE) + rm -f test Makefile.bak *.o *.a *~ .depend + +dep: depend + +depend: + $(DO_MAKE) + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif Property changes on: mplayerxp/libmpconf/Makefile ___________________________________________________________________ Added: svn:eol-style + native Added: mplayerxp/libplaytree/Makefile =================================================================== --- mplayerxp/libplaytree/Makefile (rev 0) +++ mplayerxp/libplaytree/Makefile 2012-10-25 08:10:55 UTC (rev 200) @@ -0,0 +1,49 @@ + +LIBNAME = libplaytree.a + +include ../mp_config.mak + +DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@ || exit; done +DO_ALL = @ for i in $(SUBDIRS); do $(MAKE) -C $$i all || exit; done + +SRCS = asxparser.c playtree.c playtreeparser.c + +OBJS = $(SRCS:.c=.o) +INCLUDE = -I. -I../ +CFLAGS = $(OPTFLAGS) $(INCLUDE) -W -Wall + +.SUFFIXES: .c .o + +.PHONY: $(SUBDIRS) + +all: $(LIBNAME) + +$(SUBDIRS): + $(DO_ALL) + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< + +$(LIBNAME): $(SUBDIRS) $(OBJS) + $(AR) r $(LIBNAME) $(OBJS) + +clean: + $(DO_MAKE) + rm -f *.o *.a *~ + +distclean: + $(DO_MAKE) + rm -f test Makefile.bak *.o *.a *~ .depend + +dep: depend + +depend: + $(DO_MAKE) + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif Property changes on: mplayerxp/libplaytree/Makefile ___________________________________________________________________ Added: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |