mirror of
https://github.com/lxsang/sysmond.git
synced 2024-11-08 14:38:26 +01:00
14 lines
338 B
Makefile
14 lines
338 B
Makefile
|
AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
AM_CPPFLAGS = -W -Wall -g -std=c99 -DPREFIX="\"$(prefix)\""
|
||
|
|
||
|
# bin
|
||
|
bin_PROGRAMS = sysmond
|
||
|
# source files
|
||
|
sysmond_SOURCES = ini.c sysmon.c
|
||
|
|
||
|
sysconf_DATA = sysmond.conf
|
||
|
install-data-local:
|
||
|
- [ -d /etc/systemd/system/ ] && cp sysmond.service /etc/systemd/system/
|
||
|
|
||
|
EXTRA_DIST = ini.h sysmond.conf sysmond.service
|