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

SHELL = /bin/sh

ifndef TOP_DIR
TOP_DIR :=	..
endif

CFLAGS +=	-DNODRAW

SOURCES :=	SurfMan.c	\
		parser.c	\
                RegMan.c	\
                DefMan.c	\
                FaceMan.c	\
                Muscle.c	\
                script.c	\
                fap_dec.c	\
                mpa.c		\
	       	matrix_h.c	\
	      	mpeg_face.c

compile: libface.a

# pull in the standard rules

include $(TOP_DIR)/Makefile.rules

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

