beastie/Makefile
2026-03-16 02:41:26 -05:00

16 lines
304 B
Makefile

# beastie - minimal system info
include config.mk
beastie: beastie.c config.h
${CC} ${CFLAGS} -o $@ beastie.c ${LDFLAGS}
install: beastie
install -m 755 beastie ${DESTDIR}${PREFIX}/bin/beastie
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/beastie
clean:
rm -f beastie
.PHONY: install uninstall clean