mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-06 03:02:30 +01: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
9 lines
185 B
Makefile
9 lines
185 B
Makefile
libdir = $(hexchatlibdir)
|
|
|
|
lib_LTLIBRARIES = doat.la
|
|
doat_la_SOURCES = doat.c
|
|
doat_la_LDFLAGS = $(PLUGIN_LDFLAGS) -module
|
|
doat_la_LIBADD =
|
|
doat_la_CFLAGS = -I$(top_srcdir)/src/common
|
|
|