summaryrefslogtreecommitdiffstats
path: root/libmpeg2/Makefile
blob: 5e2f8e8cfc5ec13c2c9992bdac7431d13f039b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

LIBNAME = libmpeg2.a

include ../config.mak

SRCS	= decode.c header.c idct.c idct_mmx.c motion_comp.c motion_comp_mmx.c slice.c stats.c
OBJS	= decode.o header.o idct.o idct_mmx.o motion_comp.o motion_comp_mmx.o slice.o stats.o
CFLAGS  = $(OPTFLAGS) -DMPG12PLAY
INCLUDE = -I. -I../libvo -I..

.SUFFIXES: .c .o

# .PHONY: all clean

.c.o:
	$(CC) -c $(CFLAGS) $(INCLUDE) -o $@ $<

$(LIBNAME):	$(OBJS)
	$(AR) r $(LIBNAME) $(OBJS)

all:	$(LIBNAME)

clean:
	rm -f *.o *.a *~

distclean:
	makedepend
	rm -f Makefile.bak *.o *.a *~

dep:	depend

depend:
	makedepend -- $(CFLAGS) -- $(SRCS) &> /dev/null

# DO NOT DELETE