All the Linux include directories are the same, so common them all out into a
single one, like OSX.
This commit is contained in:
parent
47bdd9cc49
commit
ab7002c0ee
26
plat/linux/include/build.lua
Normal file
26
plat/linux/include/build.lua
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
include("plat/build.lua")
|
||||||
|
|
||||||
|
headermap = {}
|
||||||
|
packagemap = {}
|
||||||
|
|
||||||
|
local function addheader(h)
|
||||||
|
headermap[h] = "plat/linux/include/"..h
|
||||||
|
packagemap["$(PLATIND)/linux/include/"..h] = "plat/linux/include/"..h
|
||||||
|
end
|
||||||
|
|
||||||
|
addheader("ack/plat.h")
|
||||||
|
addheader("ack/fcntl.h")
|
||||||
|
addheader("ack/signal.h")
|
||||||
|
addheader("sys/ioctl.h")
|
||||||
|
addheader("sys/types.h")
|
||||||
|
|
||||||
|
|
||||||
|
acklibrary {
|
||||||
|
name = "headers",
|
||||||
|
hdrs = headermap
|
||||||
|
}
|
||||||
|
|
||||||
|
installable {
|
||||||
|
name = "pkg",
|
||||||
|
map = packagemap
|
||||||
|
}
|
|
@ -31,7 +31,7 @@ var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
||||||
# Override the setting in fe so that files compiled for linux386 can see
|
# Override the setting in fe so that files compiled for linux386 can see
|
||||||
# the platform-specific headers.
|
# the platform-specific headers.
|
||||||
|
|
||||||
var C_INCLUDES=-I{PLATFORMDIR}/include -I{EM}/share/ack/include/ansi
|
var C_INCLUDES=-I{EM}/share/ack/linux/include -I{EM}/share/ack/include/ansi
|
||||||
|
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
|
|
|
@ -1,26 +1,4 @@
|
||||||
include("plat/build.lua")
|
|
||||||
|
|
||||||
headermap = {}
|
|
||||||
packagemap = {}
|
|
||||||
|
|
||||||
local function addheader(h)
|
|
||||||
headermap[h] = "plat/linux/include/"..h
|
|
||||||
packagemap["$(PLATIND)/linux386/include/"..h] = "plat/linux/include/"..h
|
|
||||||
end
|
|
||||||
|
|
||||||
addheader("ack/plat.h")
|
|
||||||
addheader("ack/fcntl.h")
|
|
||||||
addheader("ack/signal.h")
|
|
||||||
addheader("sys/ioctl.h")
|
|
||||||
addheader("sys/types.h")
|
|
||||||
|
|
||||||
acklibrary {
|
|
||||||
name = "headers",
|
|
||||||
hdrs = headermap
|
|
||||||
}
|
|
||||||
|
|
||||||
installable {
|
installable {
|
||||||
name = "pkg",
|
name = "pkg",
|
||||||
map = packagemap
|
map = { "plat/linux/include+pkg" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ acklibrary {
|
||||||
deps = {
|
deps = {
|
||||||
"plat/linux/libsys/*.h",
|
"plat/linux/libsys/*.h",
|
||||||
"lang/cem/libcc.ansi/headers+headers",
|
"lang/cem/libcc.ansi/headers+headers",
|
||||||
"plat/linux386/include+headers",
|
"plat/linux386/include+pkg",
|
||||||
},
|
},
|
||||||
vars = {
|
vars = {
|
||||||
plat = "linux386"
|
plat = "linux386"
|
||||||
|
|
|
@ -31,7 +31,7 @@ var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
||||||
# Override the setting in fe so that files compiled for linux68k can see
|
# Override the setting in fe so that files compiled for linux68k can see
|
||||||
# the platform-specific headers.
|
# the platform-specific headers.
|
||||||
|
|
||||||
var C_INCLUDES=-I{PLATFORMDIR}/include -I{EM}/share/ack/include/ansi
|
var C_INCLUDES=-I{EM}/share/ack/linux/include -I{EM}/share/ack/include/ansi
|
||||||
|
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
|
|
|
@ -1,27 +1,4 @@
|
||||||
include("plat/build.lua")
|
|
||||||
|
|
||||||
headermap = {}
|
|
||||||
packagemap = {}
|
|
||||||
|
|
||||||
local function addheader(h)
|
|
||||||
headermap[h] = "plat/linux/include/"..h
|
|
||||||
packagemap["$(PLATIND)/linux68k/include/"..h] = "plat/linux/include/"..h
|
|
||||||
end
|
|
||||||
|
|
||||||
addheader("ack/plat.h")
|
|
||||||
addheader("ack/fcntl.h")
|
|
||||||
addheader("ack/signal.h")
|
|
||||||
addheader("sys/ioctl.h")
|
|
||||||
addheader("sys/types.h")
|
|
||||||
|
|
||||||
acklibrary {
|
|
||||||
name = "headers",
|
|
||||||
hdrs = headermap
|
|
||||||
}
|
|
||||||
|
|
||||||
installable {
|
installable {
|
||||||
name = "pkg",
|
name = "pkg",
|
||||||
map = packagemap
|
map = { "plat/linux/include+pkg" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ acklibrary {
|
||||||
deps = {
|
deps = {
|
||||||
"plat/linux/libsys/*.h",
|
"plat/linux/libsys/*.h",
|
||||||
"lang/cem/libcc.ansi/headers+headers",
|
"lang/cem/libcc.ansi/headers+headers",
|
||||||
"plat/linux68k/include+headers",
|
"plat/linux68k/include+pkg",
|
||||||
},
|
},
|
||||||
vars = {
|
vars = {
|
||||||
plat = "linux68k"
|
plat = "linux68k"
|
||||||
|
|
|
@ -25,7 +25,7 @@ var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
||||||
# Override the setting in fe so that files compiled for linuxppc can see
|
# Override the setting in fe so that files compiled for linuxppc can see
|
||||||
# the platform-specific headers.
|
# the platform-specific headers.
|
||||||
|
|
||||||
var C_INCLUDES=-I{PLATFORMDIR}/include -I{EM}/share/ack/include/ansi
|
var C_INCLUDES=-I{EM}/share/ack/linux/include -I{EM}/share/ack/include/ansi
|
||||||
|
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
|
|
|
@ -1,28 +1,4 @@
|
||||||
include("plat/build.lua")
|
|
||||||
|
|
||||||
headermap = {}
|
|
||||||
packagemap = {}
|
|
||||||
|
|
||||||
local function addheader(h)
|
|
||||||
headermap[h] = "plat/linux/include/"..h
|
|
||||||
packagemap["$(PLATIND)/linuxppc/include/"..h] = "plat/linux/include/"..h
|
|
||||||
end
|
|
||||||
|
|
||||||
addheader("ack/plat.h")
|
|
||||||
addheader("ack/fcntl.h")
|
|
||||||
addheader("ack/signal.h")
|
|
||||||
addheader("sys/ioctl.h")
|
|
||||||
addheader("sys/types.h")
|
|
||||||
|
|
||||||
acklibrary {
|
|
||||||
name = "headers",
|
|
||||||
hdrs = headermap
|
|
||||||
}
|
|
||||||
|
|
||||||
installable {
|
installable {
|
||||||
name = "pkg",
|
name = "pkg",
|
||||||
map = packagemap
|
map = { "plat/linux/include+pkg" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ acklibrary {
|
||||||
deps = {
|
deps = {
|
||||||
"plat/linux/libsys/*.h",
|
"plat/linux/libsys/*.h",
|
||||||
"lang/cem/libcc.ansi/headers+headers",
|
"lang/cem/libcc.ansi/headers+headers",
|
||||||
"plat/linuxppc/include+headers",
|
"plat/linuxppc/include+pkg",
|
||||||
},
|
},
|
||||||
vars = {
|
vars = {
|
||||||
plat = "linuxppc"
|
plat = "linuxppc"
|
||||||
|
|
Loading…
Reference in a new issue