mirror of
https://github.com/moparisthebest/hexchat
synced 2024-10-31 15:35:03 -04:00
19 lines
707 B
Makefile
19 lines
707 B
Makefile
|
|
EXTRA_DIST=alt_completion.pl generate_header lib/Xchat.pm lib/Xchat/Embed.pm lib/Xchat/List/Network.pm \
|
|
lib/Xchat/List/Network/Entry.pm lib/Xchat/List/Network/AutoJoin.pm lib/IRC.pm
|
|
|
|
libdir = $(hexchatlibdir)/plugins
|
|
|
|
lib_LTLIBRARIES = perl.la
|
|
perl_la_SOURCES = perl.c
|
|
perl_la_LDFLAGS = -avoid-version -module
|
|
perl_la_LIBADD = $(PERL_LDFLAGS)
|
|
BUILT_SOURCES = xchat.pm.h irc.pm.h
|
|
#CFLAGS = @CFLAGS@ -Wno-unused
|
|
AM_CPPFLAGS = $(PERL_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/../../src/common
|
|
CLEANFILES = xchat.pm.h irc.pm.h
|
|
xchat.pm.h irc.pm.h: lib/Xchat.pm lib/Xchat/Embed.pm \
|
|
lib/Xchat/List/Network.pm lib/Xchat/List/Network/Entry.pm \
|
|
lib/Xchat/List/Network/AutoJoin.pm lib/IRC.pm
|
|
perl generate_header
|