mirror of
https://github.com/openSUSE/snapper.git
synced 2026-02-06 00:45:39 +01:00
20 lines
453 B
Makefile
20 lines
453 B
Makefile
#
|
|
# Makefile.am for snapper/server
|
|
#
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS)
|
|
|
|
sbin_PROGRAMS = snapperd
|
|
|
|
snapperd_SOURCES = \
|
|
snapperd.cc \
|
|
Client.cc Client.h \
|
|
MetaSnapper.cc MetaSnapper.h \
|
|
Background.cc Background.h \
|
|
Types.cc Types.h \
|
|
RefCounter.cc RefCounter.h \
|
|
FilesTransferTask.cc FilesTransferTask.h
|
|
|
|
snapperd_LDADD = ../snapper/libsnapper.la ../dbus/libdbus.la -lrt
|
|
snapperd_LDFLAGS = -lboost_thread -lpthread
|