1#:ts=8
2#
3#    $Id: Makefile,v 4.13 1999/08/08 09:14:31 mj Exp $
4#
5#    Makefile for FIDOGATE src/
6#
7
8#
9# Normally it should not be necessary to modify this file, see
10# ../config.make and ../rules.make
11#
12
13TOPDIR		= ..
14
15include $(TOPDIR)/config.make
16include $(TOPDIR)/rules.make
17
18
19SUBDIRS		= include common charset areafix ffx gate tick toss util
20
21
22all::
23
24install::
25
26
27all clean veryclean depend install check::
28	for d in $(SUBDIRS); do $(MAKE) -C $$d $@ || exit 1; done
29
30clean::
31	rm -f *~ *.bak *.o tags TAGS core config.pl
32
33check::
34verify:	check
35test:	check
36
37tags:
38	etags */*.[hcy] */*.pl
39