mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
725 B
Makefile
22 lines
725 B
Makefile
|
VER := $(shell git describe)
|
||
|
DIRS := /etc/rc.d /etc/conf.d /etc/rc.d/functions.d /etc/cron.hourly /sbin
|
||
|
|
||
|
minilogd: minilogd.o
|
||
|
|
||
|
installdirs:
|
||
|
install -dm755 $(foreach DIR, $(DIRS), $(DESTDIR)$(DIR))
|
||
|
|
||
|
install: minilogd installdirs
|
||
|
install -m644 -t $(DESTDIR)/etc inittab rc.conf
|
||
|
install -m644 -t $(DESTDIR)/etc/rc.d functions
|
||
|
install -m755 -t $(DESTDIR)/etc rc.local rc.local.shutdown rc.multi rc.shutdown rc.single rc.sysinit
|
||
|
install -m755 -t $(DESTDIR)/etc/cron.hourly adjtime
|
||
|
install -m755 -t $(DESTDIR)/etc/rc.d functions hwclock network netfs
|
||
|
install -m755 -t $(DESTDIR)/sbin minilogd rc.d
|
||
|
|
||
|
clean:
|
||
|
rm -f minilogd minilogd.o
|
||
|
|
||
|
release:
|
||
|
git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz
|