hexchat/src/common/Makefile.am

63 lines
1.1 KiB
Makefile
Raw Normal View History

2011-02-23 22:14:30 -05:00
## Process this file with automake to produce Makefile.in
noinst_LIBRARIES = libhexchatcommon.a
2011-02-23 22:14:30 -05:00
2012-10-13 16:26:35 -04:00
AM_CPPFLAGS = $(COMMON_CFLAGS)
2011-02-23 22:14:30 -05:00
EXTRA_DIST = \
cfgfiles.h \
chanopt.h \
ctcp.h \
dcc.h \
fe.h \
history.h \
identd.c \
ignore.h \
inbound.h \
inet.h \
make-te.c \
modes.h \
msproxy.h \
network.h \
notify.h \
outbound.h \
plugin.h \
plugin-timer.h \
proto-irc.h \
server.h \
servlist.h \
ssl.h \
ssl.c \
strlutil.c \
2011-02-23 22:14:30 -05:00
text.h \
textenums.h \
textevents.h \
textevents.in \
tree.h \
url.h \
userlist.h \
util.h \
xchat.h \
xchatc.h \
xchat-plugin.h
if USE_OPENSSL
ssl_c = ssl.c
endif
if USE_DBUS
dbusdir = dbus
libhexchatcommon_a_LIBADD = \
2011-02-23 22:14:30 -05:00
$(top_builddir)/src/common/dbus/dbus-*.$(OBJEXT)
endif
SUBDIRS = $(dbusdir) .
libhexchatcommon_a_SOURCES = cfgfiles.c chanopt.c ctcp.c dcc.c history.c ignore.c \
2011-02-23 22:14:30 -05:00
inbound.c modes.c msproxy.c network.c notify.c outbound.c \
plugin.c plugin-timer.c proto-irc.c server.c servlist.c $(ssl_c) \
strlutil.c text.c tree.c url.c userlist.c util.c xchat.c
libhexchatcommon_a_CFLAGS = $(LIBPROXY_CFLAGS)
2011-02-23 22:14:30 -05:00
textevents: make-te
./make-te < textevents.in > textevents.h 2> textenums.h