mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
* Move "COPYING" and "Changelog" from "meta/" to the top-level source directory. No need to have a separate directory for two small text files. Also, it's common practice to put these there. * Makefile: Merge "meta/Makefile". * Rename "Changelog" to "NEWS". The file containing a summary of changes between two releases in generally called "NEWS". The name "ChangeLog" should only be used for a detailed log of every commit. Signed-off-by: Lukas Fleischer <info@cryptocrack.de>
31 lines
728 B
Makefile
31 lines
728 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
|
|
$(INSTALL) -dm0755 "${DESTDIR}${PREFIX}/share/doc/faketime/"
|
|
$(INSTALL) -m0644 README "${DESTDIR}${PREFIX}/share/doc/faketime/README"
|
|
$(INSTALL) -m0644 NEWS "${DESTDIR}${PREFIX}/share/doc/faketime/NEWS"
|
|
|
|
uninstall:
|
|
$(MAKE) -C src uninstall
|
|
$(MAKE) -C man uninstall
|
|
rm -f "${DESTDIR}${PREFIX}/share/doc/faketime/README"
|
|
rm -f "${DESTDIR}${PREFIX}/share/doc/faketime/NEWS"
|
|
rmdir "${DESTDIR}${PREFIX}/share/doc/faketime"
|
|
|
|
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
|