# DICE Makefile
#
# (c)Copyright 1994 by Tobias Ferber
#
# This file is part of the WaitNotify distribution.
#
# WaitNotify is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 1 of the License,
# or (at your option) any later version.
#
# WaitNotify is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the program; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

CC=dcc
CFLAGS=-3.1 -s

all: waitnotify waitnotify.doc


waitnotify: waitnotify.c
	$(CC) $(CFLAGS) -o%(left) %(right)

waitnotify.doc: waitnotify.c
	autodoc -C %(right) > %(left)

clean:
	delete quiet waitnotify waitnotify.doc

dist: all
	copy `cpdist -n` ram:waitnotify
