mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
adds distro filter and set default to ubuntu for travis
disables debian builds for now
This commit is contained in:
parent
fc4c7ab29c
commit
d617c7f49e
@ -12,6 +12,7 @@ addons:
|
||||
- qemu-user-static
|
||||
env:
|
||||
global:
|
||||
- DISTRO=ubuntu
|
||||
- PARALLELMFLAGS="-j2"
|
||||
- PORTABLE_WORSPACE=1
|
||||
matrix:
|
||||
|
8
Makefile
8
Makefile
@ -17,6 +17,7 @@ BUILDVERBOSE ?=
|
||||
$(MARCH)BUILDTARGET ?= amd64-ubuntu-builder
|
||||
BUILDTYPE ?= Debug
|
||||
MARCH ?= $(call march,$(BUILDTARGET))
|
||||
DISTRO ?=
|
||||
|
||||
PROJECT_NAME ?= webfuse
|
||||
PROJECT_ROOT ?= .
|
||||
@ -156,8 +157,13 @@ EXTRACT_TARGETS += $(patsubst $(OUT)/%.tar.gz,$(OUT)/src/%,$(FETCH_TARGETS))
|
||||
DISCOVER_CC_TARGETS += $(addprefix discover-cc-,$(firstword $(TARGETS)))
|
||||
RULE_TARGETS += $(addsuffix /rules.mk,$(OUT_TARGETS))
|
||||
|
||||
uc = $(shell echo '$1' | sed -e 's/.*/\U&/g')
|
||||
|
||||
DISTRO := $(call uc,$(DISTRO))
|
||||
MARCHS := $(sort $(MARCHS))
|
||||
TARGETS := $(sort $(TARGETS))
|
||||
|
||||
_TARGETS := $(TARGETS)
|
||||
TARGETS := $(sort $($(DISTRO)_TARGETS))
|
||||
|
||||
# Macros
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user