mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
15 lines
295 B
Makefile
15 lines
295 B
Makefile
|
include ../build-aux/platform.mak
|
||
|
include ../build-aux/dirs.mak
|
||
|
|
||
|
all:
|
||
|
|
||
|
.PHONY: all install clean
|
||
|
|
||
|
clean:
|
||
|
|
||
|
install: all
|
||
|
mkdir -p $(DESTDIR)$(SBINDIR)
|
||
|
install update-initrd $(DESTDIR)$(SBINDIR)
|
||
|
mkdir -p $(DESTDIR)$(MANDIR)/man8
|
||
|
install update-initrd.8 $(DESTDIR)$(MANDIR)/man8/update-initrd.8
|