2018-05-14 20:43:21 -05:00

13 lines
198 B
Makefile

#!/usr/bin/make -f
all: install
install:
mkdir -pv $(DESTDIR)
cp -a src/etc src/usr $(DESTDIR)/.
# remove some remaining files
find $(DESTDIR) -type f -iname "*.in" | xargs rm -f
# vim:ts=4