mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-15 05:45:00 -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
8 lines
235 B
Makefile
8 lines
235 B
Makefile
libdir = $(hexchatlibdir)
|
|
|
|
lib_LTLIBRARIES = checksum.la
|
|
checksum_la_SOURCES = checksum.c
|
|
checksum_la_LDFLAGS = $(PLUGIN_LDFLAGS) -module
|
|
checksum_la_LIBADD = $(GLIB_LIBS)
|
|
checksum_la_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)/src/common
|