1## Process this file with automake to produce Makefile.in
2#
3# src/irc-server/Makefile.am
4#
5# EFNet compatible IRC server.
6#
7# Copyright (C) 2011-2013 Thien-Thi Nguyen
8# Copyright (C) 2000 Stefan Jahn <stefan@lkcc.org>
9# Copyright (C) 2000 Raimund Jacob <raimi@lkcc.org>
10#
11# This is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 3, or (at your option)
14# any later version.
15#
16# This software is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this package.  If not, see <http://www.gnu.org/licenses/>.
23#
24
25include $(top_srcdir)/build-aux/common.mk
26
27noinst_LIBRARIES = libircserver.a
28
29libircserver_a_SOURCES = \
30	irc-proto.c irc-proto.h \
31	irc-crypt.c irc-crypt.h \
32	irc-event.h \
33	irc-event-1.c \
34	irc-event-2.c \
35	irc-event-3.c \
36	irc-event-4.c \
37	irc-event-5.c \
38	irc-event-6.c \
39	irc-event-7.c \
40	irc-server.h irc-server.c \
41	irc-config.h irc-config.c
42
43BUILT_SOURCES = timestamp.c
44
45timestamp.c: $(top_builddir)/config.status
46	date -r $< -u +'static char created[] = "%Y-%m-%d %R UTC";' > $@
47