Made a start on building the runtimes for each platform and language; the

Linuxes all build.

--HG--
branch : dtrg-buildsystem
rename : modules/src/em_mes/build.mk => modules/src/read_em/build.mk
rename : plat/pc86/build.mk => plat/linux386/build.mk
rename : plat/pc86/build.mk => plat/linux68k/build.mk
rename : plat/pc86/build.mk => plat/linuxppc/build.mk
rename : util/ack/build.mk => util/misc/build.mk
This commit is contained in:
David Given
2013-05-12 23:51:55 +01:00
parent c1aca7dae5
commit b0c238eb5d
23 changed files with 501 additions and 92 deletions

View File

@@ -16,7 +16,7 @@ $(eval $(build-tabgen-impl))
# Output file is compiled with cfile and queued.
define tabgen-impl
$(eval g := $(OBJDIR)/$(strip $1).c)
$(eval g := $(OBJDIR)/$(objdir)/$(strip $1).c)
$g: $1 $(TABGEN)
@echo TABGEN $g
@@ -24,8 +24,9 @@ $g: $1 $(TABGEN)
$(hide) $(TABGEN) -f$(strip $1) > $g || $(RM) $g
$(eval CLEANABLES += $g)
$(call cfile,$g)
$(call $2,$g)
endef
tabgen = $(eval $(call tabgen-impl,$1))
tabgen = $(eval $(call tabgen-impl,$1,cfile))
acktabgen = $(eval $(call tabgen-impl,$1,ackfile))