Add MakeMakefile["C"]

This commit is contained in:
Nobuyoshi Nakada 2024-01-07 23:06:55 +09:00
parent 189c8077aa
commit 76c20b06aa

View File

@ -2944,7 +2944,13 @@ realclean: distclean
@lang[name] = mod
end
self["C++"] = Module.new do
##
# The language that this module is for
LANGUAGE = -"C"
self[self::LANGUAGE] = self
cxx = Module.new do
# Module for C++
include MakeMakefile
@ -2984,6 +2990,9 @@ realclean: distclean
# :startdoc:
end
cxx::LANGUAGE = -"C++"
self[cxx::LANGUAGE] = cxx
end
# MakeMakefile::Global = #