/**
 ** File:   Imakefile
 ** Date:   Sun Oct 15 1995
 ** Author: Merijn de Jonge
 ** Email:  mdejonge@fwi.uva.nl
 **
 ** This file is part of the modem communication package.
 **
 ** Copyright (C) 1995 Merijn de Jonge.
 **
 ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
 ** WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 ** 
 ** Redistribution and use in source and binary forms are permitted provided
 ** that: (1) source distributions retain this entire copyright notice and
 ** comment, and (2) distributions may not be sold for profit on physical
 ** media such as disks, tapes, and CD-ROMS, without expressed written
 ** permission.
 ** 
 **/

#include "../imake.conf"

#ifdef MODEMD_INSTALL_DIR
BINDIR=MODEMD_INSTALL_DIR
DESTDIR=
#endif

SRCS=main.c client.c log.c daemon.c server.c request.c
OBJS=main.o client.o log.o daemon.o server.o request.o \
		../libtty/libtty.a\
		../libtcpip/libtcpip.a \
		../libconf/libconf.a\
		../liberror/liberror.a\
		../libprotocol/libprotocol.a

DEFINES=
SYS_LIBRARIES=
INCLUDES= -I. -I..

ComplexProgramTarget(modemd)
InstallScript(verify_user,$(BINDIR))
DependTarget()

/* EOF Imakefile */
