diff options
author | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-24 07:34:41 +0000 |
---|---|---|
committer | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-24 07:34:41 +0000 |
commit | 8e91467d3afba74c4d9ba17fc824ade28e04301d (patch) | |
tree | f0095d3933f21a0fcf88f26c472482c7dfa72e0c /postproc/Makefile | |
parent | afc072423684b7ea8ecbde8b25c39c75803ad742 (diff) |
Independed compilation of SUBDIRS
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2445 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/Makefile')
-rw-r--r-- | postproc/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/postproc/Makefile b/postproc/Makefile new file mode 100644 index 0000000000..0bf51b6ff1 --- /dev/null +++ b/postproc/Makefile @@ -0,0 +1,40 @@ + +include ../config.mak + +LIBNAME = libpostproc.a + +SRCS=postprocess.c swscale.c +OBJS=$(SRCS:.c=.o) + +CFLAGS = $(OPTFLAGS) -I. -I.. -Wall +# -I/usr/X11R6/include/ + +.SUFFIXES: .c .o + +# .PHONY: all clean + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< + +$(LIBNAME): $(OBJS) + $(AR) r $(LIBNAME) $(OBJS) + +all: $(LIBNAME) + +clean: + rm -f *.o *.a *~ + +distclean: + rm -f Makefile.bak *.o *.a *~ .depend + +dep: depend + +depend: + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif |