24 lines
383 B
Makefile
24 lines
383 B
Makefile
AM_CXXFLAGS = -fpic \
|
|
-Wall \
|
|
-Wextra
|
|
|
|
noinst_LIBRARIES = libutils.a
|
|
|
|
libutils_a_SOURCES = appl.cpp \
|
|
appl.h \
|
|
daemon.cpp \
|
|
daemon.h \
|
|
logger.cpp \
|
|
logger.h \
|
|
notify.cpp \
|
|
notify.h \
|
|
tcpsocket.cpp \
|
|
tcpsocket.h \
|
|
thread.cpp \
|
|
thread.h \
|
|
wqueue.h
|
|
|
|
|
|
distclean-local:
|
|
-rm -f Makefile.in
|