diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2016-03-06 02:41:34 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2016-03-06 02:41:34 +0100 |
commit | 43029f91d06a76fc38b85e283d368c1d06fcbc61 (patch) | |
tree | 94fc9261282be600ec0f59211de99e803d4cafda | |
parent | cd74063b12a9a08b0dad39c572faf6ed26af38fd (diff) | |
download | pcitool-43029f91d06a76fc38b85e283d368c1d06fcbc61.tar.gz pcitool-43029f91d06a76fc38b85e283d368c1d06fcbc61.tar.bz2 pcitool-43029f91d06a76fc38b85e283d368c1d06fcbc61.tar.xz pcitool-43029f91d06a76fc38b85e283d368c1d06fcbc61.zip |
Support compiling without bzr in the driver
-rw-r--r-- | driver/Makefile (renamed from driver/makefile) | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/driver/makefile b/driver/Makefile index ca44b94..1982635 100644 --- a/driver/makefile +++ b/driver/Makefile @@ -39,17 +39,22 @@ default: else \ CC=$(CC) ;\ fi ;\ - build_revision=`bzr revno` ;\ - build_author=`bzr log -r$$build_revision | grep committer | cut -c 12-` ;\ build_path=`pwd` ;\ - build_branch=`bzr nick` ;\ build_lastmod=`find . -type f -name '*.[ch]' -printf '%TY/%Tm/%Td %TH:%TM:%TS %p\n' | grep -E -v 'build.h|mod.c' | sort -n | tail -n 1 | cut -d ' ' -f 1-2 | cut -d '.' -f 1` ;\ - build_changes=`bzr status -SV | cut -c 5- | tr \\\n " "` ;\ build_user=`whoami` ;\ build_date=`date "+%Y/%m/%d %H:%M:%S"` ;\ build="Built at $$build_date by $$build_user" ;\ - revision="Revision $$build_revision from $$build_branch by $$build_author at $$build_path, last modification from $$build_lastmod" ;\ - /bin/echo -e "#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES \"$$build_changes\"\\n" > build.h ;\ + if [ -d ../.bzr ]; then \ + build_revision=`bzr revno` ;\ + build_author=`bzr log -r$$build_revision | grep committer | cut -c 12-` ;\ + build_branch=`bzr nick` ;\ + build_changes=`bzr status -SV | cut -c 5- | tr \\\n " "` ;\ + revision="Revision $$build_revision from $$build_branch by $$build_author at $$build_path, last modification from $$build_lastmod" ;\ + /bin/echo -e "#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES \"$$build_changes\"\\n" > build.h ;\ + else \ + revision="Release \" PCILIB_RELEASE \" (r\" PCILIB_REVISION \") from \" PCILIB_REVISION_BRANCH \" by \" PCILIB_REVISION_AUTHOR \" at $$build_path, last modification from $$build_lastmod" ;\ + /bin/echo -e "#include \"../pcilib/build.h\"\\n #define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES PCILIB_REVISION_MODIFICATIONS\n" > build.h ;\ + fi ;\ $(MAKE) $(CFLAGS) -C $(KERNELDIR) M=$(PWD) CC=$$CC modules install: |