File: Makefile.lib

package info (click to toggle)
vic 2.8ucl4-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,864 kB
  • ctags: 9,033
  • sloc: ansic: 56,989; cpp: 44,560; tcl: 5,550; sh: 1,382; perl: 1,329; makefile: 357
file content (26 lines) | stat: -rw-r--r-- 514 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
# Makefile for tmndec 

# This is free software. See the file COPYING for copying conditions.

#
# This will generate optimized machine code 
#
CFLAGS = $(CCOPT) -DVIC

# dither.o yuv2rgb.o yuvrgb24.o win.o display.o
OBJS = tmndec.o getpic.o getvlc.o gethdr.o getblk.o getbits.o store.o \
	recon.o idct.o idctref.o sac.o
SRCS = $(subst .o,.c,$(OBJS))

libh263.a : $(OBJS)
	rm -f $@
	ar rc $@ $(OBJS)
	ranlib $@

clean:
	rm -f *.o *% core tmndec *~

depend dep:
	gccmakedep -- $(CFLAGS) -- $(SRCS)

# DO NOT DELETE