blob: 67fea0566e5fbe30893299a204528e84a06a207e [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001INSTALL=install
2INSTALLDIR=install -m 0755 -d
3INSTALLMAN=install -m 0644
4
5SUBDIRS = man3 man8
6
7all:
8 @for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir; done
9
10distclean: clean
11
12clean:
13 @for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir clean; done
14
15install:
16 @for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir install; done
17
18.PHONY: install clean distclean
19
20.EXPORT_ALL_VARIABLES: