File: Makefile

package info (click to toggle)
libmpeg3 1.5.4-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 992 kB
  • ctags: 1,485
  • sloc: ansic: 17,241; asm: 761; makefile: 276; sh: 14
file content (27 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (2)
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
include ../global_config
export CFLAGS

OBJS = \
	ac3.o \
	bit_allocation.o \
	dct.o \
	exponents.o \
	header.o \
	layer2.o \
	layer3.o \
	mantissa.o \
	mpeg3audio.o \
	pcm.o \
	synthesizers.o \
	tables.o

all: $(OBJS)

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

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

clean:
	rm -f *.o