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 (27 lines) | stat: -rw-r--r-- 299 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
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 `./c_flags` $*.c

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

clean:
	rm -f *.o