Makefile (440:759444c75bce) Makefile (441:2206b023fae3)
1#!/usr/bin/make
2
3DEFAULT_VERSION := $(shell grep 'define NXT_VERSION' ../../src/nxt_main.h \
4 | sed -e 's/^.*"\(.*\)".*/\1/')
5
6DEFAULT_RELEASE := 1
7
8VERSION ?= $(DEFAULT_VERSION)
9RELEASE ?= $(DEFAULT_RELEASE)
10
11SRCDIR= unit-$(VERSION)
12
13CODENAME = $(shell lsb_release -cs)
14
15BUILD_DEPENDS = debhelper devscripts libxml2-utils lintian lsb-release xsltproc
16
17MODULES=
18
1#!/usr/bin/make
2
3DEFAULT_VERSION := $(shell grep 'define NXT_VERSION' ../../src/nxt_main.h \
4 | sed -e 's/^.*"\(.*\)".*/\1/')
5
6DEFAULT_RELEASE := 1
7
8VERSION ?= $(DEFAULT_VERSION)
9RELEASE ?= $(DEFAULT_RELEASE)
10
11SRCDIR= unit-$(VERSION)
12
13CODENAME = $(shell lsb_release -cs)
14
15BUILD_DEPENDS = debhelper devscripts libxml2-utils lintian lsb-release xsltproc
16
17MODULES=
18
19# Ubuntu 17.10
20ifeq ($(CODENAME),artful)
21include Makefile.php
22include Makefile.python27
23include Makefile.python36
24include Makefile.go18
25include Makefile.go19
26endif
27
19# Ubuntu 17.04
20ifeq ($(CODENAME),zesty)
21include Makefile.php
22include Makefile.python27
23include Makefile.python35
24include Makefile.go17
25include Makefile.go18
26endif

--- 173 unchanged lines hidden ---
28# Ubuntu 17.04
29ifeq ($(CODENAME),zesty)
30include Makefile.php
31include Makefile.python27
32include Makefile.python35
33include Makefile.go17
34include Makefile.go18
35endif

--- 173 unchanged lines hidden ---