16 lines
304 B
Makefile
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
|