Mercurial > hg > soundsoftware-site
diff extra/fast-export/Makefile @ 1544:e9e55585ebf2 feature_1136
Add fast-export
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 12 Jan 2016 13:39:30 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extra/fast-export/Makefile Tue Jan 12 13:39:30 2016 +0000 @@ -0,0 +1,14 @@ +SVN ?= /usr/local/svn +APR_INCLUDES ?= /usr/include/apr-1.0 +CFLAGS += -I${APR_INCLUDES} -I${SVN}/include/subversion-1 -pipe -O2 -std=c99 +LDFLAGS += -L${SVN}/lib -lsvn_fs-1 -lsvn_repos-1 + +all: svn-fast-export svn-archive + +svn-fast-export: svn-fast-export.c +svn-archive: svn-archive.c + +.PHONY: clean + +clean: + rm -rf svn-fast-export svn-archive