Deleted Added
1#!/usr/bin/make
2
3include ../../version
4
5DEFAULT_RELEASE := 1
6
7VERSION ?= $(NXT_VERSION)
8RELEASE ?= $(DEFAULT_RELEASE)

--- 110 unchanged lines hidden (view full) ---

119ifeq ($(OSVER), sles)
120include Makefile.python27
121include Makefile.python34
122include Makefile.perl
123endif
124
125ifeq ($(OSVER), fedora)
126include Makefile.php
127include Makefile.python27
128ifeq ($(shell test `rpm --eval '0%{?fedora} -ge 29'`; echo $$?),0)
129include Makefile.python37
130else
131include Makefile.python36
132endif
133include Makefile.go
134include Makefile.perl
135include Makefile.ruby
136include Makefile.jsc-common

--- 158 unchanged lines hidden ---