diff options
author | Joey Hess <joey@kitenet.net> | 2011-08-20 16:11:42 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-08-20 16:11:42 -0400 |
commit | 737b5d14c91101d46e20999e33461e9059dd9f28 (patch) | |
tree | 109fb64986ec03679c8ea3c85362eff19aae1ce3 /Makefile | |
parent | ec746c511f5666fc214eba1a477d1ababfe9d367 (diff) |
moved files around
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -8,12 +8,11 @@ GHCMAKE=ghc $(GHCFLAGS) --make bins=git-annex git-annex-shell git-union-merge mans=git-annex.1 git-annex-shell.1 git-union-merge.1 +sources=Build/SysConfig.hs Utility/StatFS.hs Utility/Touch.hs Remote/S3.hs all: $(bins) $(mans) docs -sources: SysConfig.hs StatFS.hs Touch.hs Remote/S3.hs - -SysConfig.hs: configure.hs TestConfig.hs +Build/SysConfig.hs: configure.hs Build/TestConfig.hs $(GHCMAKE) configure ./configure @@ -30,7 +29,7 @@ Remote/S3.o: Remote/S3.hs echo "** building without S3 support"; \ fi -$(bins): SysConfig.hs Touch.hs StatFS.hs Remote/S3.o +$(bins): $(sources) $(GHCMAKE) $@ git-annex.1: doc/git-annex.mdwn @@ -82,8 +81,7 @@ docs: $(mans) --exclude='news/.*' clean: - rm -rf build $(bins) $(mans) test configure *.tix .hpc \ - StatFS.hs Touch.hs SysConfig.hs Remote/S3.hs + rm -rf build $(bins) $(mans) test configure *.tix .hpc $(sources) rm -rf doc/.ikiwiki html dist find . \( -name \*.o -or -name \*.hi \) -exec rm {} \; |