15 lines
184 B
Makefile
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
|
|
|