#   -*- 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 :=	decode_segment.c	\
		fba_decoder.c		\
		fba_object_plane.c	\
		getbits.c		\
		sacdec.c

compile: libfbadec.a

# pull in the standard rules

include $(TOP_DIR)/Makefile.rules

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

