File: version.mk

package info (click to toggle)
xdp-tools 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,360 kB
  • sloc: ansic: 24,678; sh: 2,627; makefile: 422; python: 337; lisp: 53
file content (8 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
TOOLS_VERSION := "1.6.1"

# Conditionally defined make target makes it possible to print the version
# defined above by running 'make -f version.mk'
ifeq ($(MAKEFILE_LIST),version.mk)
print_version:
	@echo $(TOOLS_VERSION)
endif