Files
libfaketime/Makefile
Lukas Fleischer 9763cdebd2 Use a separate Makefile for man pages.
* 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>
2011-05-10 21:43:24 +02:00

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