mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
* Create separate "install" and "uninstall" targets for man pages. * Add man page targets to the shortcut Makefile. Signed-off-by: Lukas Fleischer <info@cryptocrack.de>
25 lines
366 B
Makefile
25 lines
366 B
Makefile
all:
|
|
$(MAKE) -C src all
|
|
$(MAKE) -C test all
|
|
|
|
test:
|
|
$(MAKE) -C test all
|
|
|
|
install:
|
|
$(MAKE) -C src install
|
|
$(MAKE) -C man install
|
|
|
|
uninstall:
|
|
$(MAKE) -C src uninstall
|
|
$(MAKE) -C man uninstall
|
|
|
|
clean:
|
|
$(MAKE) -C src clean
|
|
$(MAKE) -C test clean
|
|
|
|
distclean:
|
|
$(MAKE) -C src distclean
|
|
$(MAKE) -C test distclean
|
|
|
|
.PHONY: all test install uninstall clean distclean
|