First milestone of replacing the build system.

--HG--
branch : dtrg-buildsystem
rename : lang/cem/cpp.ansi/Parameters => lang/cem/cpp.ansi/parameters.h
This commit is contained in:
David Given
2013-05-12 20:45:55 +01:00
parent bcfb3d802f
commit c1aca7dae5
119 changed files with 1584 additions and 319 deletions

View File

@@ -0,0 +1,23 @@
D := modules/src/alloc
define build-liballoc-impl
$(call reset)
$(call cfile, $D/Malloc.c)
$(call cfile, $D/Salloc.c)
$(call cfile, $D/Srealloc.c)
$(call cfile, $D/Realloc.c)
$(call cfile, $D/botch.c)
$(call cfile, $D/clear.c)
$(call cfile, $D/st_alloc.c)
$(call cfile, $D/std_alloc.c)
$(call cfile, $D/No_Mem.c)
$(call clibrary, $(LIBDIR)/liballoc.a)
LIBALLOC := $o
$(call reset)
$(eval q := $D/alloc.h)
$(call copyto, $(INCDIR)/alloc.h)
endef
$(eval $(build-liballoc-impl))