annotate libmpeg2/Makefile @ 1234:dfccdda074e5

OPTFLAGS vs. INCLUDES cleanup
author arpi
date Tue, 26 Jun 2001 23:15:58 +0000
parents 6d3a6d42c831
children f6d2a4bc9bb5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2 LIBNAME = libmpeg2.a
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 include ../config.mak
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5
36
846535ace7a2 libmpeg2-0.2.0 merge
arpi_esp
parents: 27
diff changeset
6 SRCS = header.c idct.c idct_mmx.c motion_comp.c motion_comp_mmx.c slice.c stats.c decode.c
866
91087aaea5c7 using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents: 36
diff changeset
7 OBJS = $(SRCS:.c=.o)
1234
dfccdda074e5 OPTFLAGS vs. INCLUDES cleanup
arpi
parents: 1010
diff changeset
8 INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC)
27
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
9 CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 .SUFFIXES: .c .o
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 # .PHONY: all clean
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15 .c.o:
27
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
16 $(CC) -c $(CFLAGS) -o $@ $<
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
17
1010
6d3a6d42c831 dependency stuff fixed
arpi_esp
parents: 866
diff changeset
18 $(LIBNAME): $(OBJS)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
19 $(AR) r $(LIBNAME) $(OBJS)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21 all: $(LIBNAME)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23 clean:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24 rm -f *.o *.a *~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26 distclean:
27
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
27 rm -f Makefile.bak *.o *.a *~ .depend
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28
27
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
29 dep: depend
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
30
1010
6d3a6d42c831 dependency stuff fixed
arpi_esp
parents: 866
diff changeset
31 depend:
866
91087aaea5c7 using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents: 36
diff changeset
32 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33
27
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
34 #
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
35 # include dependency files if they exist
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
36 #
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
37 ifneq ($(wildcard .depend),)
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
38 include .depend
f0f2a9174225 New dependency system
arpi_esp
parents: 1
diff changeset
39 endif