]>
Commit | Line | Data |
---|---|---|
916eb79e A |
1 | Project = reboot |
2 | Install_Dir = /sbin | |
1815bff5 A |
3 | |
4 | CFILES = reboot.c | |
916eb79e | 5 | MANPAGES = reboot.8 |
1815bff5 | 6 | |
916eb79e A |
7 | Embedded = $(shell tconf --test TARGET_OS_EMBEDDED) |
8 | ifeq ($(Embedded),NO) | |
9 | USERDEFS = kextmanager.defs | |
10 | endif | |
1815bff5 | 11 | |
916eb79e | 12 | include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make |
1815bff5 | 13 | |
916eb79e A |
14 | after_install: |
15 | $(LN) $(DSTROOT)/$(Install_Dir)/reboot $(DSTROOT)$(Install_Dir)/halt | |
16 | $(LN) -fs reboot.8 $(DSTROOT)/usr/share/man/man8/halt.8 |