File: Makefile

package info (click to toggle)
libmpeg3 1.8.dfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,028 kB
  • sloc: ansic: 18,561; asm: 761; makefile: 263; sh: 26
file content (31 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (5)
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
include ../global_config
export CFLAGS

OBJS = \
	getpicture.o \
	headers.o \
	idct.o \
	macroblocks.o \
	mmxtest.o \
	motion.o \
	mpeg3video.o \
	output.o \
	reconstruct.o \
	seek.o \
	slice.o \
	vlc.o


all: $(OBJS) $(MMXOBJS2)

.c.o:
	$(CC) -c `./c_flags` $*.c

.s.o:
	$(NASM) -f elf $*.s

.S.o:
	$(CC) -c `./c_flags` $*.S

clean:
	rm -f *.o