/* --------------------------------------------------------------- */
/* -- 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.16 1996/07/17 17:21:33 bolo Exp $
 */

SRC = rc.c list1.c list2.c list3.c fastnew.c \
	hash1.c hash2.c cq1.c cq2.c bit.c \
	timer.c tt.o nt.o

OBJ = $(SRC:.c=.o)
EXEC = rc list1 list2 list3 fastnew hash1 hash2 cq1 cq2 bit timer
INCLUDE += $(FC_INCL)
LIB = $(FC_LIB)

$(LIB): ALWAYS
	(cd ..; $(MAKE) $(OPTIONS))

c_plus_program(rc, rc.o, $(LIB))
c_plus_program(list1, list1.o, $(LIB))
c_plus_program(list2, list2.o, $(LIB))
c_plus_program(fastnew, fastnew.o, $(LIB))
c_plus_program(hash1, hash1.o, $(LIB))
c_plus_program(hash2, hash2.o, $(LIB))
c_plus_program(list3, list3.o, $(LIB))
c_plus_program(cq1, cq1.o, $(LIB))
c_plus_program(cq2, cq2.o, $(LIB))
c_plus_program(bit, bit.o, $(LIB))
c_plus_program(timer, timer.o, $(LIB))
c_plus_program(ntime, ntime.o, $(LIB))

pure_execs: rc.pure timer.pure

purify_c_plus_program(rc, rc.o, $(LIB), $(PURE_OPTIONS))
purify_c_plus_program(timer, timer.o, $(LIB), $(PURE_OPTIONS))

depend_target($(SRC))

