#*******************************************************************************
#										*
#	Copyright (c) 1998							*
#	Spoken Language Systems Group						*
#	Laboratory for Computer Science						*
#	Massachusetts Institute of Technology					*
#	All Rights Reserved							*
#										*
#********************************************************************************

MAKEFILE = Makefile

# Modify this to point to the package root directory
ROOT_DIR = $(GC_ROOT)
MITRE_ROOTDIR = $(ROOT_DIR)/contrib/MITRE

# archos.make sets ARCH, OS, and other variables to be used
# with makefile conditionals (ifdef, ifndef, ifeq, ifneq)
#TEMPLATES = $(ROOT_DIR)/templates
#include $(TEMPLATES)/archos.make

# Add any special CPP/LD flags here.
CPPFLAGS +=
LDFLAGS  = 

# The order of objects for linking is as follows:
#  - object files (from SOURCES)
#  - SPECIAL_LIBS (defined below)
#    SPECIAL_LIBS are libraries with variants (_debug, _profile)
#    which are particular to the current executable.  If any of the
#    variants are non-standard, set SPECIAL_LIBS_D and/or SPECIAL_LIBS_P.
#  - LIBS (defined in <package>.make)
#    LIBS are libraries with variants which every executable in the
#    package requires.
#  - COMMON_LIBS (defined below and in <package>.make)
#    COMMON_LIBS are third party libraries without variants.
#  - SYSLIBS (defined in sysdep.make and <package>.make)
#    SYSLIBS are operating system libraries.
COMMON_LIBS =
SPECIAL_LIBS =
LIBDEPS = 
SPECIAL_LIBS_D =
SPECIAL_LIBS_P =

# NOTE: ONLY SPECIFY ONE OF THE FOLLOWING THREE TYPES OF TARGETS:
# LIBTARGET, EXECTARGETS, SERVER

# If you're making a library, give the name here.
#LIBTARGET = libutil.a

# If you're making executables, list them here.
#EXECTARGETS = exec_name
EXECDIR =

# If making an executable that uses the ServerStubs mechanism, 
# give the name here.
SERVER = 

# If this is a C application which is thread safe, uncomment
# this line in order to be able to enable "make thread" to 
# generate a threaded library or executable. C only.

#THREAD_SAFE = 1

# Clear the environment. Obligatory.

include $(MITRE_ROOTDIR)/templates/env_clear.make

# Set your list of subdirectories. Obligatory.

include $(MITRE_ROOTDIR)/templates/common.make

# List subdirectories below so that OBJ subdirectories get made.
SUBDIRS = recognizer audio printout

# List all .c files here, including those in subdirectories:
SOURCES = 

include $(MITRE_ROOTDIR)/templates/dir.make
include $(MITRE_ROOTDIR)/templates/subdir.make
