This repository has been archived on 2023-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
obsdfreqd/Makefile

15 lines
329 B
Makefile

PREFIX=/usr/local
obsdfreqd:
clang main.c -o obsdfreqd -lm
all: obsdfreqd
clean:
rm obsdfreqd
install: obsdfreqd
install -o root -g wheel -m 555 obsdfreqd ${PREFIX}/sbin/obsdfreqd
install -o root -g wheel -m 555 obsdfreqd.rc /etc/rc.d/obsdfreqd
install -o root -g wheel -m 444 obsdfreqd.1 ${PREFIX}/man/man1/obsdfreqd.1