Skip to content

Commit

Permalink
Restructure meta files
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
Lukas Fleischer committed Jul 15, 2011
1 parent f2ba5c7 commit 86f738b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
File renamed without changes.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ test:
install:
$(MAKE) -C src install
$(MAKE) -C man install
$(MAKE) -C meta 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
$(MAKE) -C meta 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
Expand Down
File renamed without changes.
17 changes: 0 additions & 17 deletions meta/Makefile

This file was deleted.

0 comments on commit 86f738b

Please sign in to comment.