21 lines
		
	
	
		
			876 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			876 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
#!/usr/bin/make -f
 | 
						|
# -*- makefile -*-
 | 
						|
 | 
						|
# Uncomment this to turn on verbose mode.
 | 
						|
#export DH_VERBOSE=1
 | 
						|
 | 
						|
DEBIAN_VERSION := $(shell dpkg-parsechangelog | sed -rne "s,^Version: (.*),\1,p")
 | 
						|
DEBIAN_REVISION := $(shell dpkg-parsechangelog | sed -rne "s,^Version: ([0-9.]+)(~|-)(.*),\3,p")
 | 
						|
UPSTREAM_VERSION := $(shell dpkg-parsechangelog | sed -rne "s,^Version: ([0-9.]+)(~|-)(.*),\1,p")
 | 
						|
 | 
						|
%:
 | 
						|
	dh $@ --buildsystem=cmake --parallel --with python2,python3
 | 
						|
 | 
						|
# tests cannot be run in parallel
 | 
						|
override_dh_auto_test:
 | 
						|
	dh_auto_test -O--buildsystem=cmake -O--no-parallel
 | 
						|
 | 
						|
# FIXME: LLVM_DEFINITIONS is broken somehow in LLVM cmake upstream
 | 
						|
override_dh_auto_configure:
 | 
						|
	dh_auto_configure -- -DREVISION_LAST=$(UPSTREAM_VERSION) -DREVISION=$(UPSTREAM_VERSION) -DLLVM_DEFINITIONS="-D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS" -DPYTHON_CMD="python2;python3"
 |