annotate libpostproc/Makefile @ 127:2fe8f116576c libavcodec

Independed compilation of SUBDIRS
author nick
date Wed, 24 Oct 2001 07:34:41 +0000
parents
children 7fc045e7a924
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
1
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
2 include ../config.mak
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
3
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
4 LIBNAME = libpostproc.a
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
5
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
6 SRCS=postprocess.c swscale.c
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
7 OBJS=$(SRCS:.c=.o)
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
8
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
9 CFLAGS = $(OPTFLAGS) -I. -I.. -Wall
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
10 # -I/usr/X11R6/include/
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
11
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
12 .SUFFIXES: .c .o
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
13
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
14 # .PHONY: all clean
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
15
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
16 .c.o:
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
17 $(CC) -c $(CFLAGS) -o $@ $<
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
18
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
19 $(LIBNAME): $(OBJS)
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
20 $(AR) r $(LIBNAME) $(OBJS)
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
21
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
22 all: $(LIBNAME)
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
23
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
24 clean:
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
25 rm -f *.o *.a *~
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
26
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
27 distclean:
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
28 rm -f Makefile.bak *.o *.a *~ .depend
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
29
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
30 dep: depend
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
31
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
32 depend:
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
34
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
35 #
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
36 # include dependency files if they exist
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
37 #
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
38 ifneq ($(wildcard .depend),)
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
39 include .depend
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
40 endif