head     1.1;
branch   ;
access   ;
symbols  AR73A:1.1 DIST1_0:1.1;
locks    ; strict;
comment  @# @;


1.1
date     91.04.05.15.49.35;  author lwvanels;  state Rel;
branches ;
next     ;


desc
@Imakefile for logger directory
@



1.1
log
@Initial revision
@
text
@#
# This file is part of the OLC On-Line Consulting system.
# Imakefile for common (server and client) code.
#
# Copyright (C) 1990 by the Massachusetts Institute of Technology.
# For copying and distribution information, see the file "mit-copyright.h."
#
#	$Source: /afs/athena.mit.edu/astaff/project/olcdev/src/common/RCS/Imakefile,v $
#	$Id: Imakefile,v 1.7 91/02/25 16:15:43 lwvanels Exp $
#	$Author: lwvanels $
#

L_SRCS=	log.c
L_OBJS=	log.o

D_SRCS= bbd.c
D_OBJS= bbd.o

NormalLibraryTarget(logger,$(L_OBJS))
SaberLibraryTarget(logger,$(L_SRCS),$(L_OBJS))

NormalProgramTarget(bbd,$(D_OBJS),,,)
SaberProgramTarget(bbd,$(D_SRCS),$(D_OBJS),,)

DependSrcs()

LintTarget()

AllTarget(liblogger.a bbd)
@
