mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-13 22:53:45 +01:00
fad8f93ad8
This fixes requiring to add a version every time a new release comes out...
10 lines
279 B
Makefile
10 lines
279 B
Makefile
libdir = $(hexchatlibdir)
|
|
|
|
lib_LTLIBRARIES = python.la
|
|
python_la_SOURCES = python.c
|
|
python_la_LDFLAGS = $(PLUGIN_LDFLAGS) -module
|
|
python_la_LIBADD = $(PYTHON_LIBS) $(GLIB_LIBS)
|
|
python_la_CPPFLAGS = $(PYTHON_CPPFLAGS)
|
|
python_la_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)/src/common
|
|
|