#*******************************************************************************
#										*
#	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)

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

# Add any special CPP/LD flags here.
CPPFLAGS += -g
LDFLAGS  = -L$(ISIP_PROTO)/lib/$(ISIP_BINARY)/

# 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 = ../bin/

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

# 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

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

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

# Include the rules file (make variable settings and targets)
include ${ROOT_DIR}/templates/rules.make

# Include automatically generated source dependency file
ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)
include $(MAKEFILE).depend
endif
