Blame


1 0f3e84f4 2003-01-13 alex #
2 0f3e84f4 2003-01-13 alex # ngIRCd -- The Next Generation IRC Daemon
3 0f3e84f4 2003-01-13 alex # Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 0f3e84f4 2003-01-13 alex #
5 0f3e84f4 2003-01-13 alex # This program is free software; you can redistribute it and/or modify
6 0f3e84f4 2003-01-13 alex # it under the terms of the GNU General Public License as published by
7 0f3e84f4 2003-01-13 alex # the Free Software Foundation; either version 2 of the License, or
8 0f3e84f4 2003-01-13 alex # (at your option) any later version.
9 0f3e84f4 2003-01-13 alex # Please read the file COPYING, README and AUTHORS for more information.
10 0f3e84f4 2003-01-13 alex #
11 0f3e84f4 2003-01-13 alex # $Id: Makefile.am,v 1.1 2003/01/13 12:20:16 alex Exp $
12 0f3e84f4 2003-01-13 alex #
13 0f3e84f4 2003-01-13 alex
14 0f3e84f4 2003-01-13 alex AUTOMAKE_OPTIONS = ansi2knr
15 0f3e84f4 2003-01-13 alex
16 0f3e84f4 2003-01-13 alex INCLUDES = -I$(srcdir)/../portab
17 0f3e84f4 2003-01-13 alex
18 0f3e84f4 2003-01-13 alex noinst_LIBRARIES = libngtool.a
19 0f3e84f4 2003-01-13 alex
20 0f3e84f4 2003-01-13 alex libngtool_a_SOURCES = tool.c
21 0f3e84f4 2003-01-13 alex
22 0f3e84f4 2003-01-13 alex noinst_HEADERS = tool.h
23 0f3e84f4 2003-01-13 alex
24 0f3e84f4 2003-01-13 alex maintainer-clean-local:
25 0f3e84f4 2003-01-13 alex rm -f Makefile Makefile.in
26 0f3e84f4 2003-01-13 alex
27 0f3e84f4 2003-01-13 alex # -eof-