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,19 @@
D := modules/src/string
define build-libstring-impl
$(call reset)
$(call cfile, $D/bts2str.c)
$(call cfile, $D/btscat.c)
$(call cfile, $D/btscmp.c)
$(call cfile, $D/btscpy.c)
$(call cfile, $D/btszero.c)
$(call cfile, $D/long2str.c)
$(call cfile, $D/str2bts.c)
$(call cfile, $D/str2long.c)
$(call cfile, $D/strzero.c)
$(call clibrary, $(LIBDIR)/libstring.a)
LIBSTRING := $o
endef
$(eval $(build-libstring-impl))