17 lines
296 B
Makefile
17 lines
296 B
Makefile
bin_PROGRAMS = notify-send
|
|
|
|
common_ldflags = \
|
|
$(top_builddir)/libnotify/libnotify.la \
|
|
$(PACKAGE_LIBS)
|
|
|
|
notify_send_SOURCES = notify-send.c
|
|
notify_send_LDADD = $(common_ldflags)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/libnotify \
|
|
$(PACKAGE_CFLAGS)
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|