Makefile (1645:29efab062b4e) Makefile (1694:191d30e37005)
1#!/usr/bin/make
2
3include ../../version
4
5DEFAULT_RELEASE := 1
6
7VERSION ?= $(NXT_VERSION)
8RELEASE ?= $(DEFAULT_RELEASE)
9
10SRCDIR= unit-$(VERSION)
11
12CODENAME = $(shell lsb_release -cs)
13
14BUILD_DEPENDS_unit = build-essential debhelper devscripts fakeroot libxml2-utils lintian lsb-release xsltproc libssl-dev
15BUILD_DEPENDS = $(BUILD_DEPENDS_unit)
16
17MODULES=
18
1#!/usr/bin/make
2
3include ../../version
4
5DEFAULT_RELEASE := 1
6
7VERSION ?= $(NXT_VERSION)
8RELEASE ?= $(DEFAULT_RELEASE)
9
10SRCDIR= unit-$(VERSION)
11
12CODENAME = $(shell lsb_release -cs)
13
14BUILD_DEPENDS_unit = build-essential debhelper devscripts fakeroot libxml2-utils lintian lsb-release xsltproc libssl-dev
15BUILD_DEPENDS = $(BUILD_DEPENDS_unit)
16
17MODULES=
18
19# Ubuntu 20.10
20ifeq ($(CODENAME),groovy)
21include Makefile.php
22include Makefile.python27
23include Makefile.python38
24include Makefile.go
25include Makefile.perl
26include Makefile.ruby
27include Makefile.jsc-common
28include Makefile.jsc11
29include Makefile.jsc13
30include Makefile.jsc14
31include Makefile.jsc15
32endif
33
19# Ubuntu 20.04
20ifeq ($(CODENAME),focal)
21include Makefile.php
22include Makefile.python27
23include Makefile.python38
24include Makefile.go
25include Makefile.perl
26include Makefile.ruby

--- 297 unchanged lines hidden ---
34# Ubuntu 20.04
35ifeq ($(CODENAME),focal)
36include Makefile.php
37include Makefile.python27
38include Makefile.python38
39include Makefile.go
40include Makefile.perl
41include Makefile.ruby

--- 297 unchanged lines hidden ---