File: Makefile

package info (click to toggle)
ploop 1.15-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,372 kB
  • sloc: ansic: 16,133; sh: 413; makefile: 222; python: 144
file content (16 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include ../Makefile.inc

all clean distclean:
.PHONY: all clean distclean

install_tmpfiles:
	$(Q) $(INSTALL) -d $(DESTDIR)$(TMPFILESDIR)
	$(Q) $(INSTALL) -m 644 tmpfiles.d/ploop.conf $(DESTDIR)$(TMPFILESDIR)

install_logrotate:
	$(Q) $(INSTALL) -d $(DESTDIR)/$(LOGROTATEDIR)
	$(Q) $(INSTALL) -m 644 logrotate.d/ploop $(DESTDIR)/$(LOGROTATEDIR)

install: install_tmpfiles $(if $(PLOOP_LOG_FILE), install_logrotate)

.PHONY: install install_tmpfiles install_logrotate