#   -*- Makefile -*-
# 
#   [$RCSfile: Makefile,v $ $Revision: 1.1 $]
# 
#	 Copyright Telenor Research and Development
# 
#   Note:
#
#	This makefile requires GNU make

SHELL = /bin/sh

ifndef TOP_DIR
TOP_DIR :=	..
endif

SOURCES :=	H263Decoder.cpp	\
		getpic.cpp	\
		getvlc.cpp	\
		getblk.cpp	\
		recon.cpp	\
		idct.cpp	\
		idctref.cpp	\
		sac.cpp		\
		bitio.cpp

compile: libh263.a

# pull in the standard rules

include $(TOP_DIR)/Makefile.rules

libh263.a: $(OBJ)
	$(AR) -cr $@ $(OBJ)
