/* --------------------------------------------------------------- */
/* -- Copyright (c) 1994, 1995 Computer Sciences Department,    -- */
/* -- University of Wisconsin-Madison, subject to the terms     -- */
/* -- and conditions given in the file COPYRIGHT.  All Rights   -- */
/* -- Reserved.                                                 -- */
/* --------------------------------------------------------------- */

/*
 *  $Id: Imakefile,v 1.3 1995/08/05 18:40:36 zwilling Exp $
 */

SRC = sm_app_test.C
OBJ = $(SRC:.C=.o)
EXEC = sm_app_test file_scan

INCLUDE += $(SM_INCL) $(STHREAD_INCL) $(FC_INCL) $(COMMON_INCL)

LIB = $(SM_LIB) $(COMMON_LIB) $(STHREAD_LIB) $(FC_LIB)

$(SM_LIB): ALWAYS
	(cd $(SM_DIR); $(MAKE) $(OPTIONS))

c_plus_program(sm_app_test, sm_app_test.o, $(LIB))
c_plus_program(file_scan, file_scan.o options.o, $(LIB))

PURE_OPTIONS = $(PURE_OPT)
purify_c_plus_program(sm_app_test, sm_app_test.o, $(LIB), $(PURE_OPTIONS))

depend_target($(SRC))

