util/Makefile
2025-04-15 17:45:50 -04:00

15 lines
184 B
Makefile

#
# Makefile
#
include config.mk
.PHONY: all install clean
all:
@echo "Run 'make install' to install util.h to PREFIX."
install:
install include/util.h $(PREFIX)/include -m 644