mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-10 19:35:15 -05:00
0e4164ad0c
- Store openssl flags in own vars - Share some common flags for plugins - Fix building plugins on win32 - Store all glib flags in one var - Don't link against every lib for each plugin - Don't hardcode ldflags for sysinfo
10 lines
331 B
Makefile
10 lines
331 B
Makefile
EXTRA_DIST = INSTALL LICENSE
|
|
|
|
libdir = $(hexchatlibdir)
|
|
|
|
lib_LTLIBRARIES = fishlim.la
|
|
fishlim_la_SOURCES = fish.c irc.c keystore.c misc.c plugin_hexchat.c
|
|
fishlim_la_LDFLAGS = $(PLUGIN_LDFLAGS) -module
|
|
fishlim_la_LIBADD = $(GLIB_LIBS) $(OPENSSL_LIBS)
|
|
fishlim_la_CFLAGS = $(GLIB_CFLAGS) $(OPENSSL_CFLAGS) -I$(top_srcdir)/src/common
|