# File: Makefile
# Author: Jeff Bilmes
# Copyright (C) International Computer Science Institute, 1991
#
# COPYRIGHT NOTICE: This code is provided "AS IS" WITHOUT ANY WARRANTY
# and is subject to the terms of the SATHER LIBRARY GENERAL PUBLIC
# LICENSE contained in the file: "sather/doc/license.txt" of the Sather
# distribution. The license is also available from ICSI, 1947 Center
# St., Suite 600, Berkeley CA 94704, USA.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# FUNCTION:
#    Makefile for the initial runtime and C code needed for
#    compiling compiler and user code. This is invoked from
#    sys_dot_sather as the default makefile and ensures the runtime
#    is there.
#
# HISTORY:
#* Last edited: Feb  1 17:46 1992 (hws)
#*  Feb  1 19:33 1992 (hws): include shared defaults now.
#* Created: Mon Jan  7 09:33:08 1991
#* Modified from "Makefile" for compiler use.
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# Global defaults
include ${SATHER_HOME}/Makefile.defaults

# Local defaults
CFLAGS = ${XCFLAGS} ${LOCFLAGS} ${RT_FLAGS_}

OBJS= deep_save_.o main_.o runtime_.o envivars_.o base_.o file_.o str_.o time_.o

all: ${OBJS} 

${OBJS}: all_.h

# switch to the installation Makefile should it happen that this
# file is called during clean.
clean:  
	${MKCMD} -f Makefile clean

install:
