1234567891011121314151617181920212223242526272829303132 |
- LINTIAN_ARGS = -Evi --pedantic
- include main.mk
- help:
- @$(info Targets of makefilet:)
- @$(info * nothing special)
- build:
- # nothing to be done
- install:
- install -D -t "$(DESTDIR)/usr/include/makefilet" main.mk
- find include -type f -name "*.mk" \
- | xargs install -D -t "$(DESTDIR)/usr/include/makefilet/include"
|