25 lines
425 B
Makefile
25 lines
425 B
Makefile
notifyincdir = $(includedir)/libnotify
|
|
|
|
lib_LTLIBRARIES = libnotify.la
|
|
|
|
notifyinc_HEADERS = \
|
|
notify.h \
|
|
notifynotification.h \
|
|
notifycommon.h \
|
|
notifymarshal.h
|
|
|
|
libnotify_la_SOURCES = \
|
|
dbus-compat.h \
|
|
notify.c \
|
|
notifynotification.c \
|
|
notifymarshal.c
|
|
|
|
libnotify_la_LIBADD = \
|
|
$(PACKAGE_LIBS)
|
|
|
|
libnotify_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
INCLUDES = \
|
|
$(PACKAGE_CFLAGS)
|