1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 05:32:27 +01:00

More manifest restructuring with Makefile rules to simplify the process.

This commit is contained in:
Kris Maglione
2011-09-29 01:57:05 -04:00
parent befa2fa054
commit 6a433c69e3
2 changed files with 25 additions and 5 deletions

View File

@@ -4,9 +4,12 @@ GECKO_MINOR ?= 0
ABI_OS := $(shell uname -s)
ABI_ARCH := $(shell uname -m)
ABI_COMPILER := gcc3
ABI ?= $(GECKO_MAJOR).$(GECKO_MINOR)-$(ABI_OS)_$(ABI_ARCH)-$(ABI_COMPILER)
ABI_PLATFORM ?= $(ABI_OS)_$(ABI_ARCH)-$(ABI_COMPILER)
ABI ?= $(GECKO_MAJOR).$(GECKO_MINOR)-$(ABI_PLATFORM)
DEFINES = -DGECKO_MAJOR=$(GECKO_MAJOR) -DGECKO_MINOR=$(GECKO_MINOR)
LIBEXT ?= so
SED := $(shell if [ "xoo" = x$$(echo foo | sed -E 's/f(o)/\1/' 2>/dev/null) ]; \
then echo sed -E; else echo sed -r; \
fi)