diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-14 23:00:23 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-14 23:00:23 -0400 |
commit | bc5c54c987f548505a3877e8a0e460abe0b2a081 (patch) | |
tree | 4074e799eef10edb2060abf9d1ba2863c47b256c /Makefile | |
parent | 96e074bb0333b6952fb9fbce2f0a810ebafd3d2c (diff) |
symlink touching fun
When adding files to the annex, the symlinks pointing at the annexed
content are made to have the same mtime as the original file. While git
does not preserve that information, this allows a tool like metastore to be
used with annexed files.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -11,7 +11,10 @@ SysConfig.hs: configure.hs TestConfig.hs $(GHCMAKE) configure ./configure -$(bins): SysConfig.hs +Touch.hs: Touch.hsc + hsc2hs $< + +$(bins): SysConfig.hs Touch.hs $(GHCMAKE) $@ git-annex.1: doc/git-annex.mdwn @@ -57,7 +60,7 @@ docs: $(mans) --exclude='news/.*' clean: - rm -rf build $(bins) $(mans) test configure SysConfig.hs *.tix .hpc + rm -rf build $(bins) $(mans) test configure Touch.hs SysConfig.hs *.tix .hpc rm -rf doc/.ikiwiki html find . \( -name \*.o -or -name \*.hi \) -exec rm {} \; |