minix/include/Makefile
Ben Gras 6b500b03a6 Raised version to 3.0.2 in config.h
Told the Makefile not to panic if creating /usr/include due to it existing
(due to bin not being allowed to create it) fails, this smoothens installs
done by bin (instead of root).
2005-05-03 15:39:41 +00:00

12 lines
135 B
Makefile

INC=/usr/include
all::
clean::
install::
-rm -rf $(INC)
mkdir -p $(INC)
tar cf - `find . -name '*.h'` | (cd $(INC) && tar xf -)