You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.housekeeping 41KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519
  1. # -*- makefile -*- : Force emacs to use Makefile mode
  2. #
  3. # This file contains various boring housekeeping functions that would
  4. # otherwise seriously clutter up the main Makefile.
  5. ###############################################################################
  6. #
  7. # Find a usable "echo -e" substitute.
  8. #
  9. TAB := $(shell $(PRINTF) '\t')
  10. ECHO_E_ECHO := $(ECHO)
  11. ECHO_E_ECHO_E := $(ECHO) -e
  12. ECHO_E_BIN_ECHO := /bin/echo
  13. ECHO_E_BIN_ECHO_E := /bin/echo -e
  14. ECHO_E_ECHO_TAB := $(shell $(ECHO_E_ECHO) '\t' | cat)
  15. ECHO_E_ECHO_E_TAB := $(shell $(ECHO_E_ECHO_E) '\t' | cat)
  16. ECHO_E_BIN_ECHO_TAB := $(shell $(ECHO_E_BIN_ECHO) '\t')
  17. ECHO_E_BIN_ECHO_E_TAB := $(shell $(ECHO_E_BIN_ECHO_E) '\t')
  18. ifeq ($(ECHO_E_ECHO_TAB),$(TAB))
  19. ECHO_E := $(ECHO_E_ECHO)
  20. endif
  21. ifeq ($(ECHO_E_ECHO_E_TAB),$(TAB))
  22. ECHO_E := $(ECHO_E_ECHO_E)
  23. endif
  24. ifeq ($(ECHO_E_BIN_ECHO_TAB),$(TAB))
  25. ECHO_E := $(ECHO_E_BIN_ECHO)
  26. endif
  27. ifeq ($(ECHO_E_BIN_ECHO_E_TAB),$(TAB))
  28. ECHO_E := $(ECHO_E_BIN_ECHO_E)
  29. endif
  30. .echocheck :
  31. ifdef ECHO_E
  32. @$(TOUCH) $@
  33. else
  34. @$(PRINTF) '%24s : x%sx\n' 'tab' '$(TAB)'
  35. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_ECHO) \t"' \
  36. '$(ECHO_E_ECHO_TAB)'
  37. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_ECHO_E) \t"' \
  38. '$(ECHO_E_ECHO_E_TAB)'
  39. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_BIN_ECHO) \t"' \
  40. '$(ECHO_E_BIN_ECHO_TAB)'
  41. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_BIN_ECHO_E) \t"' \
  42. '$(ECHO_E_BIN_ECHO_E_TAB)'
  43. @$(ECHO) "No usable \"echo -e\" substitute found"
  44. @exit 1
  45. endif
  46. MAKEDEPS += .echocheck
  47. VERYCLEANUP += .echocheck
  48. echo :
  49. @$(ECHO) "Using \"$(ECHO_E)\" for \"echo -e\""
  50. ###############################################################################
  51. #
  52. # Generate a usable "seq" substitute
  53. #
  54. define seq
  55. $(shell awk 'BEGIN { for ( i = $(1) ; i <= $(2) ; i++ ) print i }')
  56. endef
  57. ###############################################################################
  58. #
  59. # Determine host OS
  60. #
  61. HOST_OS := $(shell uname -s)
  62. hostos :
  63. @$(ECHO) $(HOST_OS)
  64. ###############################################################################
  65. #
  66. # Determine compiler
  67. CCDEFS := $(shell $(CC) -E -x c -c /dev/null -dM | cut -d" " -f2)
  68. ccdefs:
  69. @$(ECHO) $(CCDEFS)
  70. ifeq ($(filter __ICC,$(CCDEFS)),__ICC)
  71. CCTYPE := icc
  72. else
  73. CCTYPE := gcc
  74. endif
  75. cctype:
  76. @$(ECHO) $(CCTYPE)
  77. ###############################################################################
  78. #
  79. # Check for tools that can cause failed builds
  80. #
  81. ifeq ($(CCTYPE),gcc)
  82. GCC_2_96_BANNER := $(shell $(CC) -v 2>&1 | grep -is 'gcc version 2\.96')
  83. ifneq ($(GCC_2_96_BANNER),)
  84. $(warning gcc 2.96 is unsuitable for compiling iPXE)
  85. $(warning Use gcc 2.95 or a newer version instead)
  86. $(error Unsuitable build environment found)
  87. endif
  88. endif
  89. PERL_UNICODE_CHECK := $(shell $(PERL) -e 'use bytes; print chr(255)' | wc -c)
  90. ifeq ($(PERL_UNICODE_CHECK),2)
  91. $(warning Your Perl version has a Unicode handling bug)
  92. $(warning Execute this command before building iPXE:)
  93. $(warning export LANG=$${LANG%.UTF-8})
  94. $(error Unsuitable build environment found)
  95. endif
  96. LD_GOLD_BANNER := $(shell $(LD) -v 2>&1 | grep 'GNU gold')
  97. ifneq ($(LD_GOLD_BANNER),)
  98. $(warning GNU gold is unsuitable for building iPXE)
  99. $(warning Use GNU ld instead)
  100. $(error Unsuitable build environment found)
  101. endif
  102. ###############################################################################
  103. #
  104. # Check if $(eval ...) is available to use
  105. #
  106. HAVE_EVAL :=
  107. ifndef NO_EVAL
  108. $(eval HAVE_EVAL := yes)
  109. endif
  110. eval :
  111. @$(ECHO) $(HAVE_EVAL)
  112. ###############################################################################
  113. #
  114. # Check for various tool workarounds
  115. #
  116. WORKAROUND_CFLAGS :=
  117. WORKAROUND_ASFLAGS :=
  118. WORKAROUND_LDFLAGS :=
  119. # Make syntax does not allow use of comma or space in certain places.
  120. # This ugly workaround is suggested in the manual.
  121. #
  122. COMMA := ,
  123. EMPTY :=
  124. SPACE := $(EMPTY) $(EMPTY)
  125. HASH := \#
  126. define NEWLINE
  127. endef
  128. # Some widespread patched versions of gcc include -fstack-protector by
  129. # default, even when -ffreestanding is specified. We therefore need
  130. # to disable -fstack-protector if the compiler supports it.
  131. #
  132. ifeq ($(CCTYPE),gcc)
  133. SP_TEST = $(CC) -fno-stack-protector -x c -c /dev/null \
  134. -o /dev/null >/dev/null 2>&1
  135. SP_FLAGS := $(shell $(SP_TEST) && $(ECHO) '-fno-stack-protector')
  136. WORKAROUND_CFLAGS += $(SP_FLAGS)
  137. endif
  138. # gcc 4.4 generates .eh_frame sections by default, which distort the
  139. # output of "size". Inhibit this.
  140. #
  141. ifeq ($(CCTYPE),gcc)
  142. CFI_TEST = $(CC) -fno-dwarf2-cfi-asm -fno-exceptions -fno-unwind-tables \
  143. -fno-asynchronous-unwind-tables -x c -c /dev/null \
  144. -o /dev/null >/dev/null 2>&1
  145. CFI_FLAGS := $(shell $(CFI_TEST) && \
  146. $(ECHO) '-fno-dwarf2-cfi-asm -fno-exceptions ' \
  147. '-fno-unwind-tables -fno-asynchronous-unwind-tables')
  148. WORKAROUND_CFLAGS += $(CFI_FLAGS)
  149. endif
  150. # gcc 4.6 generates spurious warnings if -Waddress is in force.
  151. # Inhibit this.
  152. #
  153. ifeq ($(CCTYPE),gcc)
  154. WNA_TEST = $(CC) -Wno-address -x c -c /dev/null -o /dev/null >/dev/null 2>&1
  155. WNA_FLAGS := $(shell $(WNA_TEST) && $(ECHO) '-Wno-address')
  156. WORKAROUND_CFLAGS += $(WNA_FLAGS)
  157. endif
  158. # Some versions of gas choke on division operators, treating them as
  159. # comment markers. Specifying --divide will work around this problem,
  160. # but isn't available on older gas versions.
  161. #
  162. DIVIDE_TEST = $(AS) --divide /dev/null -o /dev/null 2>/dev/null
  163. DIVIDE_FLAGS := $(shell $(DIVIDE_TEST) && $(ECHO) '--divide')
  164. WORKAROUND_ASFLAGS += $(DIVIDE_FLAGS)
  165. ###############################################################################
  166. #
  167. # Build verbosity
  168. #
  169. ifeq ($(V),1)
  170. Q :=
  171. QM := @\#
  172. else
  173. Q := @
  174. QM := @
  175. endif
  176. ###############################################################################
  177. #
  178. # Checker
  179. #
  180. ifeq ($(C),1)
  181. export REAL_CC := $(CC)
  182. CC := cgcc
  183. CFLAGS += -Wno-decl
  184. endif
  185. ###############################################################################
  186. #
  187. # Set BIN according to whatever was specified on the command line as
  188. # the build target.
  189. #
  190. # Determine how many different BIN directories are mentioned in the
  191. # make goals.
  192. #
  193. BIN_GOALS := $(filter bin bin/% bin-%,$(MAKECMDGOALS))
  194. BIN_GOALS_BINS := $(sort $(foreach BG,$(BIN_GOALS),\
  195. $(firstword $(subst /, ,$(BG)))))
  196. NUM_BINS := $(words $(BIN_GOALS_BINS))
  197. ifeq ($(NUM_BINS),0)
  198. # No BIN directory was specified. Set BIN to "bin" as a sensible
  199. # default.
  200. BIN := bin
  201. else # NUM_BINS == 0
  202. ifeq ($(NUM_BINS),1)
  203. # If exactly one BIN directory was specified, set BIN to match this
  204. # directory.
  205. #
  206. BIN := $(firstword $(BIN_GOALS_BINS))
  207. else # NUM_BINS == 1
  208. # More than one BIN directory was specified. We cannot handle the
  209. # latter case within a single make invocation, so set up recursive
  210. # targets for each BIN directory. Use exactly one target for each BIN
  211. # directory since running multiple make invocations within the same
  212. # BIN directory is likely to cause problems.
  213. #
  214. # Leave $(BIN) undefined. This has implications for any target that
  215. # depends on $(BIN); such targets should be made conditional upon the
  216. # existence of $(BIN).
  217. #
  218. BIN_GOALS_FIRST := $(foreach BGB,$(BIN_GOALS_BINS),\
  219. $(firstword $(filter $(BGB)/%,$(BIN_GOALS))))
  220. BIN_GOALS_OTHER := $(filter-out $(BIN_GOALS_FIRST),$(BIN_GOALS))
  221. $(BIN_GOALS_FIRST) : % : BIN_RECURSE
  222. $(Q)$(MAKE) --no-print-directory BIN=$(firstword $(subst /, ,$@)) \
  223. $(filter $(firstword $(subst /, ,$@))/%, $(BIN_GOALS))
  224. $(BIN_GOALS_OTHER) : % : BIN_RECURSE
  225. $(Q)$(TRUE)
  226. .PHONY : BIN_RECURSE
  227. endif # NUM_BINS == 1
  228. endif # NUM_BINS == 0
  229. ifdef BIN
  230. # Create $(BIN) directory if it doesn't exist yet
  231. #
  232. ifeq ($(wildcard $(BIN)),)
  233. $(shell $(MKDIR) -p $(BIN))
  234. endif
  235. # Target to allow e.g. "make bin-efi arch"
  236. #
  237. $(BIN) :
  238. @# Do nothing, silently
  239. .PHONY : $(BIN)
  240. # Remove everything in $(BIN) for a "make clean"
  241. #
  242. CLEANUP += $(BIN)/*.* # Avoid picking up directories
  243. endif # defined(BIN)
  244. # Determine whether or not we need to include the dependency files
  245. #
  246. NO_DEP_TARGETS := $(BIN) clean veryclean
  247. ifeq ($(MAKECMDGOALS),)
  248. NEED_DEPS := 1
  249. endif
  250. ifneq ($(strip $(filter-out $(NO_DEP_TARGETS),$(MAKECMDGOALS))),)
  251. NEED_DEPS := 1
  252. endif
  253. ###############################################################################
  254. #
  255. # Select build architecture and platform based on $(BIN)
  256. #
  257. # BIN has the form bin[-[arch-]platform]
  258. ARCHS := $(patsubst arch/%,%,$(wildcard arch/*))
  259. PLATFORMS := $(patsubst config/defaults/%.h,%,\
  260. $(wildcard config/defaults/*.h))
  261. archs :
  262. @$(ECHO) $(ARCHS)
  263. platforms :
  264. @$(ECHO) $(PLATFORMS)
  265. ifdef BIN
  266. # Determine architecture portion of $(BIN), if present
  267. BIN_ARCH := $(strip $(foreach A,$(ARCHS),\
  268. $(patsubst bin-$(A)-%,$(A),\
  269. $(filter bin-$(A)-%,$(BIN)))))
  270. # Determine platform portion of $(BIN), if present
  271. ifeq ($(BIN_ARCH),)
  272. BIN_PLATFORM := $(patsubst bin-%,%,$(filter bin-%,$(BIN)))
  273. else
  274. BIN_PLATFORM := $(patsubst bin-$(BIN_ARCH)-%,%,$(BIN))
  275. endif
  276. # Determine build architecture
  277. DEFAULT_ARCH := i386
  278. ARCH := $(firstword $(BIN_ARCH) $(DEFAULT_ARCH))
  279. CFLAGS += -DARCH=$(ARCH)
  280. arch :
  281. @$(ECHO) $(ARCH)
  282. .PHONY : arch
  283. # Determine build platform
  284. DEFAULT_PLATFORM := pcbios
  285. PLATFORM := $(firstword $(BIN_PLATFORM) $(DEFAULT_PLATFORM))
  286. CFLAGS += -DPLATFORM=$(PLATFORM)
  287. platform :
  288. @$(ECHO) $(PLATFORM)
  289. endif # defined(BIN)
  290. # Include architecture-specific Makefile
  291. ifdef ARCH
  292. MAKEDEPS += arch/$(ARCH)/Makefile
  293. include arch/$(ARCH)/Makefile
  294. endif
  295. # Include architecture-specific include path
  296. ifdef ARCH
  297. INCDIRS += arch/$(ARCH)/include
  298. INCDIRS += arch/$(ARCH)/include/$(PLATFORM)
  299. endif
  300. ###############################################################################
  301. #
  302. # Source file handling
  303. # SRCDIRS lists all directories containing source files.
  304. srcdirs :
  305. @$(ECHO) $(SRCDIRS)
  306. # SRCS lists all .c or .S files found in any SRCDIR
  307. #
  308. SRCS += $(wildcard $(patsubst %,%/*.c,$(SRCDIRS)))
  309. SRCS += $(wildcard $(patsubst %,%/*.S,$(SRCDIRS)))
  310. srcs :
  311. @$(ECHO) $(SRCS)
  312. # AUTO_SRCS lists all files in SRCS that are not mentioned in
  313. # NON_AUTO_SRCS. Files should be added to NON_AUTO_SRCS if they
  314. # cannot be built using the standard build template.
  315. #
  316. AUTO_SRCS = $(filter-out $(NON_AUTO_SRCS),$(SRCS))
  317. autosrcs :
  318. @$(ECHO) $(AUTO_SRCS)
  319. # Just about everything else in this section depends upon having
  320. # $(BIN) set
  321. ifdef BIN
  322. # INCDIRS lists the include path
  323. incdirs :
  324. @$(ECHO) $(INCDIRS)
  325. # Common flags
  326. #
  327. CFLAGS += $(foreach INC,$(INCDIRS),-I$(INC))
  328. CFLAGS += -Os
  329. CFLAGS += -g
  330. ifeq ($(CCTYPE),gcc)
  331. CFLAGS += -ffreestanding
  332. CFLAGS += -Wall -W -Wformat-nonliteral
  333. HOST_CFLAGS += -Wall -W -Wformat-nonliteral
  334. endif
  335. ifeq ($(CCTYPE),icc)
  336. CFLAGS += -fno-builtin
  337. CFLAGS += -no-ip
  338. CFLAGS += -no-gcc
  339. CFLAGS += -diag-disable 111 # Unreachable code
  340. CFLAGS += -diag-disable 128 # Unreachable loop
  341. CFLAGS += -diag-disable 170 # Array boundary checks
  342. CFLAGS += -diag-disable 177 # Unused functions
  343. CFLAGS += -diag-disable 181 # printf() format checks
  344. CFLAGS += -diag-disable 188 # enum strictness
  345. CFLAGS += -diag-disable 193 # Undefined preprocessor identifiers
  346. CFLAGS += -diag-disable 280 # switch ( constant )
  347. CFLAGS += -diag-disable 310 # K&R parameter lists
  348. CFLAGS += -diag-disable 424 # Extra semicolon
  349. CFLAGS += -diag-disable 589 # Declarations mid-code
  350. CFLAGS += -diag-disable 593 # Unused variables
  351. CFLAGS += -diag-disable 810 # Casting ints to smaller ints
  352. CFLAGS += -diag-disable 981 # Sequence point violations
  353. CFLAGS += -diag-disable 1292 # Ignored attributes
  354. CFLAGS += -diag-disable 1338 # void pointer arithmetic
  355. CFLAGS += -diag-disable 1361 # Variable-length arrays
  356. CFLAGS += -diag-disable 1418 # Missing prototypes
  357. CFLAGS += -diag-disable 1419 # Missing prototypes
  358. CFLAGS += -diag-disable 1599 # Hidden variables
  359. CFLAGS += -Wall -Wmissing-declarations
  360. endif
  361. CFLAGS += $(WORKAROUND_CFLAGS) $(EXTRA_CFLAGS)
  362. ASFLAGS += $(WORKAROUND_ASFLAGS) $(EXTRA_ASFLAGS)
  363. LDFLAGS += $(WORKAROUND_LDFLAGS) $(EXTRA_LDFLAGS)
  364. HOST_CFLAGS += -O2 -g
  365. # Inhibit -Werror if NO_WERROR is specified on make command line
  366. #
  367. ifneq ($(NO_WERROR),1)
  368. CFLAGS += -Werror
  369. ASFLAGS += --fatal-warnings
  370. HOST_CFLAGS += -Werror
  371. endif
  372. # Function trace recorder state in the last build. This is needed
  373. # in order to correctly rebuild whenever the function recorder is
  374. # enabled/disabled.
  375. #
  376. FNREC_STATE := $(BIN)/.fnrec.state
  377. ifeq ($(wildcard $(FNREC_STATE)),)
  378. FNREC_OLD := <invalid>
  379. else
  380. FNREC_OLD := $(shell cat $(FNREC_STATE))
  381. endif
  382. ifeq ($(FNREC_OLD),$(FNREC))
  383. $(FNREC_STATE) :
  384. else
  385. $(FNREC_STATE) : clean
  386. $(shell $(ECHO) "$(FNREC)" > $(FNREC_STATE))
  387. endif
  388. VERYCLEANUP += $(FNREC_STATE)
  389. MAKEDEPS += $(FNREC_STATE)
  390. ifeq ($(FNREC),1)
  391. # Enabling -finstrument-functions affects gcc's analysis and leads to spurious
  392. # warnings about use of uninitialised variables.
  393. #
  394. CFLAGS += -Wno-uninitialized
  395. CFLAGS += -finstrument-functions
  396. CFLAGS += -finstrument-functions-exclude-file-list=core/fnrec.c
  397. endif
  398. # Enable per-item sections and section garbage collection. Note that
  399. # some older versions of gcc support -fdata-sections but treat it as
  400. # implying -fno-common, which would break our build. Some other older
  401. # versions issue a spurious and uninhibitable warning if
  402. # -ffunction-sections is used with -g, which would also break our
  403. # build since we use -Werror.
  404. #
  405. ifeq ($(CCTYPE),gcc)
  406. DS_TEST = $(ECHO) 'char x;' | \
  407. $(CC) -fdata-sections -S -x c - -o - 2>/dev/null | \
  408. grep -E '\.comm' > /dev/null
  409. DS_FLAGS := $(shell $(DS_TEST) && $(ECHO) '-fdata-sections')
  410. FS_TEST = $(CC) -ffunction-sections -g -c -x c /dev/null \
  411. -o /dev/null 2>/dev/null
  412. FS_FLAGS := $(shell $(FS_TEST) && $(ECHO) '-ffunction-sections')
  413. CFLAGS += $(FS_FLAGS) $(DS_FLAGS)
  414. endif
  415. LDFLAGS += --gc-sections
  416. # Force creation of static binaries (required for OpenBSD, does no
  417. # harm on other platforms).
  418. #
  419. LDFLAGS += -static
  420. # compiler.h is needed for our linking and debugging system
  421. #
  422. CFLAGS += -include include/compiler.h
  423. # The section type character (e.g. "@" in "@progbits") varies by
  424. # architecture.
  425. #
  426. CFLAGS += -DASM_TCHAR='$(ASM_TCHAR)' -DASM_TCHAR_OPS='$(ASM_TCHAR_OPS)'
  427. # CFLAGS for specific object types
  428. #
  429. CFLAGS_c +=
  430. CFLAGS_S += -DASSEMBLY
  431. # Base object name of the current target
  432. #
  433. OBJECT = $(firstword $(subst ., ,$(@F)))
  434. # CFLAGS for specific object files. You can define
  435. # e.g. CFLAGS_rtl8139, and have those flags automatically used when
  436. # compiling bin/rtl8139.o.
  437. #
  438. OBJ_CFLAGS = $(CFLAGS_$(OBJECT)) -DOBJECT=$(subst -,_,$(OBJECT))
  439. $(BIN)/%.flags :
  440. @$(ECHO) $(OBJ_CFLAGS)
  441. # ICC requires postprocessing objects to fix up table alignments
  442. #
  443. ifeq ($(CCTYPE),icc)
  444. POST_O = && $(ICCFIX) $@
  445. POST_O_DEPS := $(ICCFIX)
  446. else
  447. POST_O :=
  448. POST_O_DEPS :=
  449. endif
  450. # Debug level calculations
  451. #
  452. DBGLVL_MAX = -DDBGLVL_MAX=$(firstword $(subst ., ,$(1)))
  453. DBGLVL_DFLT = -DDBGLVL_DFLT=$(lastword $(subst ., ,$(1)))
  454. DBGLVL = $(call DBGLVL_MAX,$(1)) $(call DBGLVL_DFLT,$(1))
  455. # Rules for specific object types.
  456. #
  457. COMPILE_c = $(CC) $(CFLAGS) $(CFLAGS_c) $(OBJ_CFLAGS)
  458. RULE_c = $(Q)$(COMPILE_c) -c $< -o $@ $(POST_O)
  459. RULE_c_to_ids.o = $(Q)$(ECHO_E) '$(OBJ_IDS_ASM_NL)' | $(ASSEMBLE_S) -o $@
  460. RULE_c_to_dbg%.o= $(Q)$(COMPILE_c) $(call DBGLVL,$*) -c $< -o $@ $(POST_O)
  461. RULE_c_to_c = $(Q)$(COMPILE_c) -E -c $< > $@
  462. RULE_c_to_s = $(Q)$(COMPILE_c) -S -g0 -c $< -o $@
  463. PREPROCESS_S = $(CPP) $(CFLAGS) $(CFLAGS_S) $(OBJ_CFLAGS)
  464. ASSEMBLE_S = $(AS) $(ASFLAGS)
  465. RULE_S = $(Q)$(PREPROCESS_S) $< | $(ASSEMBLE_S) -o $@
  466. RULE_S_to_dbg%.o= $(Q)$(PREPROCESS_S) $(call DBGLVL,$*) $< | $(ASSEMBLE_S) -o $@
  467. RULE_S_to_s = $(Q)$(PREPROCESS_S) $< > $@
  468. GENERIC_TARGETS += ids.o dbg%.o c s
  469. # List of embedded images included in the last build of embedded.o.
  470. # This is needed in order to correctly rebuild embedded.o whenever the
  471. # list of objects changes.
  472. #
  473. EMBED := $(EMBEDDED_IMAGE) # Maintain backwards compatibility
  474. EMBEDDED_LIST := $(BIN)/.embedded.list
  475. ifeq ($(wildcard $(EMBEDDED_LIST)),)
  476. EMBED_OLD := <invalid>
  477. else
  478. EMBED_OLD := $(shell cat $(EMBEDDED_LIST))
  479. endif
  480. ifneq ($(EMBED_OLD),$(EMBED))
  481. $(shell $(ECHO) "$(EMBED)" > $(EMBEDDED_LIST))
  482. endif
  483. $(EMBEDDED_LIST) : $(MAKEDEPS)
  484. VERYCLEANUP += $(EMBEDDED_LIST)
  485. EMBEDDED_FILES := $(subst $(COMMA), ,$(EMBED))
  486. EMBED_ALL := $(foreach i,$(call seq,1,$(words $(EMBEDDED_FILES))),\
  487. EMBED ( $(i), \"$(word $(i), $(EMBEDDED_FILES))\",\
  488. \"$(notdir $(word $(i),$(EMBEDDED_FILES)))\" ))
  489. embedded_DEPS += $(EMBEDDED_FILES) $(EMBEDDED_LIST)
  490. CFLAGS_embedded = -DEMBED_ALL="$(EMBED_ALL)"
  491. # List of trusted root certificates
  492. #
  493. TRUSTED_LIST := $(BIN)/.trusted.list
  494. ifeq ($(wildcard $(TRUSTED_LIST)),)
  495. TRUST_OLD := <invalid>
  496. else
  497. TRUST_OLD := $(shell cat $(TRUSTED_LIST))
  498. endif
  499. ifneq ($(TRUST_OLD),$(TRUST))
  500. $(shell $(ECHO) "$(TRUST)" > $(TRUSTED_LIST))
  501. endif
  502. $(TRUSTED_LIST) : $(MAKEDEPS)
  503. VERYCLEANUP += $(TRUSTED_LIST)
  504. # Trusted root certificate fingerprints
  505. #
  506. TRUSTED_CERTS := $(subst $(COMMA), ,$(TRUST))
  507. TRUSTED_FPS := $(foreach CERT,$(TRUSTED_CERTS),\
  508. 0x$(subst :,$(COMMA) 0x,$(lastword $(subst =, ,\
  509. $(shell $(OPENSSL) x509 -in $(CERT) -noout -sha256 \
  510. -fingerprint))))$(COMMA))
  511. rootcert_DEPS += $(TRUSTED_FILES) $(TRUSTED_LIST)
  512. CFLAGS_rootcert = $(if $(TRUSTED_FPS),-DTRUSTED="$(TRUSTED_FPS)")
  513. # List of embedded certificates
  514. #
  515. CERT_LIST := $(BIN)/.certificate.list
  516. ifeq ($(wildcard $(CERT_LIST)),)
  517. CERT_OLD := <invalid>
  518. else
  519. CERT_OLD := $(shell cat $(CERT_LIST))
  520. endif
  521. ifneq ($(CERT_OLD),$(CERT))
  522. $(shell $(ECHO) "$(CERT)" > $(CERT_LIST))
  523. endif
  524. $(CERT_LIST) : $(MAKEDEPS)
  525. VERYCLEANUP += $(CERT_LIST)
  526. # Embedded certificates concatenated and then split into one file per
  527. # certificate (even if original files contained certificate chains)
  528. #
  529. CERT_FILES := $(subst $(COMMA), ,$(CERT))
  530. CERT_CONCAT := $(BIN)/.certificates.pem
  531. ifneq ($(CERT),)
  532. CERT_COUNT := $(shell grep "BEGIN CERTIFICATE" $(CERT_FILES) | wc -l)
  533. $(CERT_CONCAT) : $(CERT_FILES) $(CERT_LIST)
  534. $(Q)cat $(CERT_FILES) > $@
  535. # We must use an (otherwise unnecessary) pattern rule here to encode
  536. # the fact that one "csplit" command generates multiple targets
  537. CERT_PEMS := $(foreach i,$(call seq,1,$(CERT_COUNT)),\
  538. $(BIN)/.certificate.pem.$(i))
  539. $(subst .pem.,.%.,$(CERT_PEMS)) : $(BIN)/.certificates.%
  540. $(Q)$(CSPLIT) -q -n 1 -f $(BIN)/.certificate.pem. $< \
  541. '/BEGIN CERTIFICATE/' '{*}'
  542. CERT_DERS := $(subst .certificate.pem.,.certificate.der.,$(CERT_PEMS))
  543. $(BIN)/.certificate.der.% : $(BIN)/.certificate.pem.%
  544. $(Q)$(OPENSSL) x509 -in $< -outform DER -out $@
  545. CERT_ALL := $(foreach i,$(call seq,1,$(CERT_COUNT)),\
  546. CERT ( $(i), \"$(word $(i),$(CERT_DERS))\" ))
  547. endif
  548. certstore_DEPS += $(CERT_LIST) $(CERT_FILES) $(CERT_PEMS) $(CERT_DERS)
  549. CFLAGS_certstore += -DCERT_ALL="$(CERT_ALL)"
  550. CLEANUP += $(BIN)/.certificate.* $(BIN)/.certificates.*
  551. # (Single-element) list of private keys
  552. #
  553. ifdef KEY
  554. PRIVKEY := $(KEY) # Maintain backwards compatibility
  555. endif
  556. PRIVKEY_LIST := $(BIN)/.private_key.list
  557. ifeq ($(wildcard $(PRIVKEY_LIST)),)
  558. PRIVKEY_OLD := <invalid>
  559. else
  560. PRIVKEY_OLD := $(shell cat $(PRIVKEY_LIST))
  561. endif
  562. ifneq ($(PRIVKEY_OLD),$(PRIVKEY))
  563. $(shell $(ECHO) "$(PRIVKEY)" > $(PRIVKEY_LIST))
  564. endif
  565. $(PRIVKEY_LIST) : $(MAKEDEPS)
  566. VERYCLEANUP += $(PRIVKEY_LIST)
  567. # Embedded private key
  568. #
  569. PRIVKEY_INC := $(BIN)/.private_key.der
  570. ifdef PRIVKEY
  571. $(PRIVKEY_INC) : $(PRIVKEY) $(PRIVKEY_LIST)
  572. $(Q)$(OPENSSL) rsa -in $< -outform DER -out $@
  573. privkey_DEPS += $(PRIVKEY_INC)
  574. endif
  575. CLEANUP += $(BIN)/.private_key.*
  576. privkey_DEPS += $(PRIVKEY_LIST)
  577. CFLAGS_privkey += $(if $(PRIVKEY),-DPRIVATE_KEY="\"$(PRIVKEY_INC)\"")
  578. # (Single-element) list of named configurations
  579. #
  580. CONFIG_LIST := $(BIN)/.config.list
  581. ifeq ($(wildcard $(CONFIG_LIST)),)
  582. CONFIG_OLD := <invalid>
  583. else
  584. CONFIG_OLD := $(shell cat $(CONFIG_LIST))
  585. endif
  586. ifneq ($(CONFIG_OLD),$(CONFIG))
  587. $(shell $(ECHO) "$(CONFIG)" > $(CONFIG_LIST))
  588. endif
  589. $(CONFIG_LIST) : $(MAKEDEPS)
  590. VERYCLEANUP += $(CONFIG_LIST)
  591. # Named configurations
  592. #
  593. ifneq ($(CONFIG),)
  594. ifneq ($(wildcard config/$(CONFIG)),)
  595. CFLAGS += -DCONFIG=$(CONFIG)
  596. endif
  597. CFLAGS += -DLOCAL_CONFIG=$(CONFIG)
  598. endif
  599. config/named.h : $(CONFIG_LIST)
  600. $(Q)$(TOUCH) $@
  601. .PRECIOUS : config/named.h
  602. # (Single-element) list of assertion configuration
  603. #
  604. ASSERT_LIST := $(BIN)/.assert.list
  605. ifeq ($(wildcard $(ASSERT_LIST)),)
  606. ASSERT_OLD := <invalid>
  607. else
  608. ASSERT_OLD := $(shell cat $(ASSERT_LIST))
  609. endif
  610. ifneq ($(ASSERT_OLD),$(ASSERT))
  611. $(shell $(ECHO) "$(ASSERT)" > $(ASSERT_LIST))
  612. endif
  613. $(ASSERT_LIST) : $(MAKEDEPS)
  614. VERYCLEANUP += $(ASSERT_LIST)
  615. # Assertion configuration
  616. #
  617. ifneq ($(ASSERT),)
  618. CFLAGS += -DASSERTING=$(ASSERT)
  619. endif
  620. include/assert.h : $(ASSERT_LIST)
  621. $(Q)$(TOUCH) $@
  622. .PRECIOUS : include/assert.h
  623. # These files use .incbin inline assembly to include a binary file.
  624. # Unfortunately ccache does not detect this dependency and caches
  625. # builds even when the binary file has changed.
  626. #
  627. $(BIN)/embedded.% : override CC := env CCACHE_DISABLE=1 $(CC)
  628. $(BIN)/certstore.% : override CC := env CCACHE_DISABLE=1 $(CC)
  629. $(BIN)/privkey.% : override CC := env CCACHE_DISABLE=1 $(CC)
  630. # Debug message autocolourisation range
  631. #
  632. DBGCOL_LIST := $(BIN)/.dbgcol.list
  633. ifeq ($(wildcard $(DBGCOL_LIST)),)
  634. DBGCOL_OLD := <invalid>
  635. else
  636. DBGCOL_OLD := $(shell cat $(DBGCOL_LIST))
  637. endif
  638. ifneq ($(DBGCOL_OLD),$(DBGCOL))
  639. $(shell $(ECHO) "$(DBGCOL)" > $(DBGCOL_LIST))
  640. endif
  641. $(DBGCOL_LIST) : $(MAKEDEPS)
  642. VERYCLEANUP += $(DBGCOL_LIST)
  643. DBGCOL_COLOURS := $(subst -, ,$(DBGCOL))
  644. DBGCOL_MIN := $(firstword $(DBGCOL_COLOURS))
  645. DBGCOL_MAX := $(lastword $(DBGCOL_COLOURS))
  646. debug_DEPS += $(DBGCOL_LIST)
  647. CFLAGS_debug += $(if $(DBGCOL_MIN),-DDBGCOL_MIN=$(DBGCOL_MIN))
  648. CFLAGS_debug += $(if $(DBGCOL_MAX),-DDBGCOL_MAX=$(DBGCOL_MAX))
  649. # We automatically generate rules for any file mentioned in AUTO_SRCS
  650. # using the following set of templates. We use $(eval ...) if
  651. # available, otherwise we generate separate Makefile fragments and
  652. # include them.
  653. # deps_template : generate dependency list for a given source file
  654. #
  655. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  656. #
  657. define deps_template_file
  658. $(call deps_template_parts,$(1),$(subst .,,$(suffix $(1))),$(basename $(notdir $(1))))
  659. endef
  660. #
  661. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  662. # $(2) is the source type (e.g. "c")
  663. # $(3) is the source base name (e.g. "rtl8139")
  664. #
  665. define deps_template_parts
  666. @$(ECHO) " [DEPS] $(1)"
  667. @$(MKDIR) -p $(BIN)/deps/$(dir $(1))
  668. $(Q)$(CPP) $(CFLAGS) $(CFLAGS_$(2)) $(CFLAGS_$(3)) -DOBJECT=$(3) \
  669. -Wno-error -M $(1) -MG -MP | \
  670. sed 's/\.o\s*:/_DEPS +=/' > $(BIN)/deps/$(1).d
  671. endef
  672. # rules_template : generate rules for a given source file
  673. #
  674. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  675. #
  676. define rules_template
  677. $(call rules_template_parts,$(1),$(subst .,,$(suffix $(1))),$(basename $(notdir $(1))))
  678. endef
  679. #
  680. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  681. # $(2) is the source type (e.g. "c")
  682. # $(3) is the source base name (e.g. "rtl8139")
  683. #
  684. define rules_template_parts
  685. $$(BIN)/$(3).o : $(1) $$(MAKEDEPS) $$(POST_O_DEPS) $$($(3)_DEPS)
  686. $$(QM)$(ECHO) " [BUILD] $$@"
  687. $$(RULE_$(2))
  688. BOBJS += $$(BIN)/$(3).o
  689. $(foreach TGT,$(GENERIC_TARGETS),$(if $(RULE_$(2)_to_$(TGT)),$(NEWLINE)$(call rules_template_target,$(1),$(2),$(3),$(TGT))))
  690. $$(BIN)/deps/$(1).d : $$($(3)_DEPS)
  691. TAGS : $$($(3)_DEPS)
  692. endef
  693. #
  694. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  695. # $(2) is the source type (e.g. "c")
  696. # $(3) is the source base name (e.g. "rtl8139")
  697. # $(4) is the destination type (e.g. "dbg%.o")
  698. #
  699. define rules_template_target
  700. $$(BIN)/$(3).$(4) : $(1) $$(MAKEDEPS) $$(POST_O_DEPS) $$($(3)_DEPS)
  701. $$(QM)$(ECHO) " [BUILD] $$@"
  702. $$(RULE_$(2)_to_$(4))
  703. $(TGT)_OBJS += $$(BIN)/$(3).$(4)
  704. endef
  705. #
  706. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  707. #
  708. define rules_template_file
  709. @$(ECHO) " [RULES] $(1)"
  710. @$(MKDIR) -p $(BIN)/rules/$(dir $(1))
  711. @$(ECHO_E) '$(subst $(NEWLINE),\n,$(call rules_template,$(1)))' \
  712. > $(BIN)/rules/$(1).r
  713. endef
  714. # Generate the dependency files
  715. #
  716. $(BIN)/deps/%.d : % $(MAKEDEPS)
  717. $(call deps_template_file,$<)
  718. # Calculate list of dependency files
  719. #
  720. AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS))
  721. autodeps :
  722. @$(ECHO) $(AUTO_DEPS)
  723. VERYCLEANUP += $(BIN)/deps
  724. # Include dependency files
  725. #
  726. ifdef NEED_DEPS
  727. ifneq ($(AUTO_DEPS),)
  728. -include $(AUTO_DEPS)
  729. endif
  730. endif
  731. # Generate the rules files
  732. #
  733. $(BIN)/rules/%.r : % $(MAKEDEPS)
  734. $(call rules_template_file,$<)
  735. # Calculate list of rules files
  736. #
  737. AUTO_RULES = $(patsubst %,$(BIN)/rules/%.r,$(AUTO_SRCS))
  738. autorules :
  739. @$(ECHO) $(AUTO_RULES)
  740. VERYCLEANUP += $(BIN)/rules
  741. # Evaluate rules (or include rules files)
  742. #
  743. ifdef NEED_DEPS
  744. ifneq ($(AUTO_RULES),)
  745. ifneq ($(HAVE_EVAL),)
  746. $(foreach SRC,$(AUTO_SRCS),$(eval $(call rules_template,$(SRC))))
  747. else
  748. -include $(AUTO_RULES)
  749. endif
  750. endif
  751. endif
  752. # Files to be parsed using parserom.pl
  753. #
  754. ROM_SRCS = $(foreach SRC,$(AUTO_SRCS),\
  755. $(if $(findstring drivers/,$(SRC)),$(SRC)))
  756. romsrcs :
  757. @$(ECHO) $(ROM_SRCS)
  758. # List of files to be parsed using parserom.pl
  759. #
  760. ROM_SRCS_LIST := $(BIN)/.rom.list
  761. ifeq ($(wildcard $(ROM_SRCS_LIST)),)
  762. ROM_SRCS_OLD := <invalid>
  763. else
  764. ROM_SRCS_OLD := $(shell cat $(ROM_SRCS_LIST))
  765. endif
  766. ifneq ($(ROM_SRCS_OLD),$(ROM_SRCS))
  767. $(shell $(ECHO) "$(ROM_SRCS)" > $(ROM_SRCS_LIST))
  768. endif
  769. $(ROM_SRCS_LIST) : $(MAKEDEPS)
  770. VERYCLEANUP += $(ROM_SRCS_LIST)
  771. # ROM definition file
  772. #
  773. ROMDEFS = $(BIN)/.rom.defs
  774. $(ROMDEFS) : $(ROM_SRCS) $(ROM_SRCS_LIST) $(PARSEROM) $(MAKEDEPS)
  775. $(QM)$(ECHO) " [PARSEROM]"
  776. $(Q)$(PERL) $(PARSEROM) $(ROM_SRCS) > $@
  777. VERYCLEANUP += $(ROMDEFS)
  778. # Evaluate ROM definition file
  779. ifdef NEED_DEPS
  780. ifneq ($(ROM_SRCS),)
  781. -include $(ROMDEFS)
  782. endif
  783. endif
  784. # Device ID tables (using IDs from ROM definition file)
  785. #
  786. define obj_pci_id_asm
  787. .section ".pci_devlist.$(1)", "a", $(ASM_TCHAR)progbits
  788. .globl pci_devlist_$(1)
  789. pci_devlist_$(1):
  790. .short ( 0x$(1) & 0xffff )
  791. endef
  792. define obj_isa_id_asm
  793. endef
  794. OBJ_IDS_ASM = $(foreach ROM,$(ROMS_$(OBJECT)),$(call obj_$(ROM_TYPE_$(ROM))_id_asm,$(ROM)))
  795. OBJ_IDS_ASM_NL = $(subst $(NEWLINE),\n,$(OBJ_IDS_ASM))
  796. $(BIN)/%.ids :
  797. @$(ECHO_E) '$(OBJ_IDS_ASM_NL)'
  798. BOBJS += $(patsubst %,$(BIN)/%.ids.o,$(DRIVERS))
  799. # The following variables are created by the autogenerated rules
  800. #
  801. bobjs :
  802. @$(ECHO) $(BOBJS)
  803. drivers_% :
  804. @$(ECHO) $(DRIVERS_$*)
  805. drivers :
  806. @$(ECHO) $(DRIVERS)
  807. .PHONY : drivers
  808. roms :
  809. @$(ECHO) $(ROMS)
  810. # Generate error usage information
  811. #
  812. $(BIN)/%.einfo : $(BIN)/%.o
  813. $(QM)$(ECHO) " [EINFO] $@"
  814. $(Q)$(OBJCOPY) -O binary -j .einfo --set-section-flags .einfo=alloc \
  815. $< $@
  816. EINFOS := $(patsubst $(BIN)/%.o,$(BIN)/%.einfo,$(BOBJS))
  817. $(BIN)/errors : $(EINFOS) $(EINFO)
  818. $(QM)$(ECHO) " [EINFO] $@"
  819. $(Q)$(EINFO) $(EINFOS) | sort > $@
  820. CLEANUP += $(BIN)/errors # Doesn't match the $(BIN)/*.* pattern
  821. # Generate the NIC file from the parsed source files. The NIC file is
  822. # only for rom-o-matic.
  823. #
  824. $(BIN)/NIC : $(AUTO_DEPS)
  825. @$(ECHO) '# This is an automatically generated file, do not edit' > $@
  826. @$(ECHO) '# It does not affect anything in the build, ' \
  827. 'it is only for rom-o-matic' >> $@
  828. @$(ECHO) >> $@
  829. @perl -ne 'chomp; print "$$1\n" if /\# NIC\t(.*)$$/' $^ >> $@
  830. CLEANUP += $(BIN)/NIC # Doesn't match the $(BIN)/*.* pattern
  831. # Select drivers to be included in the all-drivers build
  832. #
  833. DRIVERS_ipxe = $(DRIVERS_net) $(DRIVERS_infiniband) \
  834. $(DRIVERS_xen) $(DRIVERS_hyperv)
  835. # Analyse a target name (e.g. "bin/dfe538--prism2_pci.rom.tmp") and
  836. # derive the variables:
  837. #
  838. # TGT_ELEMENTS : the elements of the target (e.g. "dfe538 prism2_pci")
  839. # TGT_PREFIX : the prefix type (e.g. "pcirom")
  840. # TGT_DRIVERS : the driver for each element (e.g. "rtl8139 prism2_pci")
  841. # TGT_ROM_NAME : the ROM name (e.g. "dfe538")
  842. #
  843. TGT_ELEMENTS = $(subst --, ,$(firstword $(subst ., ,$(notdir $@))))
  844. TGT_ROM_NAME = $(firstword $(TGT_ELEMENTS))
  845. TGT_DRIVERS = $(strip $(foreach TGT_ELEMENT,$(TGT_ELEMENTS), \
  846. $(if $(DRIVERS_$(TGT_ELEMENT)), \
  847. $(DRIVERS_$(TGT_ELEMENT)), \
  848. $(firstword $(DRIVER_$(TGT_ELEMENT)) \
  849. $(TGT_ELEMENT)))))
  850. TGT_PREFIX_NAME = $(word 2,$(subst ., ,$(notdir $@)))
  851. TGT_PREFIX = $(strip $(if $(filter rom,$(TGT_PREFIX_NAME)), \
  852. $(ROM_TYPE_$(TGT_ROM_NAME))rom, \
  853. $(TGT_PREFIX_NAME)))
  854. # Look up ROM IDs for the current target
  855. # (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the variables:
  856. #
  857. # TGT_PCI_VENDOR : the PCI vendor ID (e.g. "0x1186")
  858. # TGT_PCI_DEVICE : the PCI device ID (e.g. "0x1300")
  859. #
  860. TGT_PCI_VENDOR = $(PCI_VENDOR_$(TGT_ROM_NAME))
  861. TGT_PCI_DEVICE = $(PCI_DEVICE_$(TGT_ROM_NAME))
  862. # Calculate link-time options for the current target
  863. # (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the variables:
  864. #
  865. # TGT_LD_DRIVERS : symbols to require in order to drag in the relevant drivers
  866. # (e.g. "obj_rtl8139 obj_prism2_pci")
  867. # TGT_LD_IDS : symbols to define in order to fill in ID structures in the
  868. # ROM header (e.g."pci_vendor_id=0x1186 pci_device_id=0x1300")
  869. #
  870. TGT_LD_DRIVERS = $(subst -,_,$(patsubst %,obj_%,$(TGT_DRIVERS)))
  871. TGT_LD_IDS = pci_vendor_id=$(firstword $(TGT_PCI_VENDOR) 0) \
  872. pci_device_id=$(firstword $(TGT_PCI_DEVICE) 0)
  873. TGT_LD_DEVLIST = $(foreach ELEM,$(TGT_ELEMENTS),$(if $(PCI_VENDOR_$(ELEM)),\
  874. pci_devlist_$(patsubst 0x%,%,$(PCI_VENDOR_$(ELEM)))$(patsubst 0x%,%,$(PCI_DEVICE_$(ELEM)))))
  875. TGT_LD_ENTRY = _$(TGT_PREFIX)_start
  876. # Calculate linker flags based on link-time options for the current
  877. # target type (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the
  878. # variables:
  879. #
  880. # TGT_LD_FLAGS : target-specific flags to pass to linker (e.g.
  881. # "-u obj_zpciprefix -u obj_rtl8139 -u obj_prism2_pci
  882. # --defsym pci_vendor=0x1186 --defsym pci_device=0x1300")
  883. #
  884. TGT_LD_FLAGS = $(foreach SYM,$(TGT_LD_ENTRY) $(TGT_LD_DRIVERS) \
  885. $(TGT_LD_DEVLIST) obj_config obj_config_$(PLATFORM),\
  886. -u $(SYM) --defsym check_$(SYM)=$(SYM) ) \
  887. $(patsubst %,--defsym %,$(TGT_LD_IDS)) \
  888. -e $(TGT_LD_ENTRY)
  889. # Calculate list of debugging versions of objects to be included in
  890. # the target.
  891. #
  892. DEBUG_LIST = $(subst $(COMMA), ,$(DEBUG))
  893. DEBUG_MAX = $(firstword $(word 2,$(subst :, ,$(1))) 1)
  894. DEBUG_DFLT = $(if $(word 3,$(subst :, ,$(1))),.$(word 3,$(subst :, ,$(1))))
  895. DEBUG_LEVEL = $(call DEBUG_MAX,$(1))$(call DEBUG_DFLT,$(1))
  896. DEBUG_BASE = $(firstword $(subst :, ,$(1))).dbg$(call DEBUG_LEVEL,$(1))
  897. DEBUG_OBJ = $(BIN)/$(call DEBUG_BASE,$(1)).o
  898. DEBUG_ORIG_OBJ = $(BIN)/$(firstword $(subst :, ,$(1))).o
  899. DEBUG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_OBJ,$(D)))
  900. DEBUG_ORIG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_ORIG_OBJ,$(D)))
  901. BLIB_OBJS = $(DEBUG_OBJS) $(filter-out $(DEBUG_ORIG_OBJS),$(BOBJS))
  902. # Print out all derived information for a given target.
  903. #
  904. $(BIN)/%.info :
  905. @$(ECHO) 'Elements : $(TGT_ELEMENTS)'
  906. @$(ECHO) 'Prefix : $(TGT_PREFIX)'
  907. @$(ECHO) 'Drivers : $(TGT_DRIVERS)'
  908. @$(ECHO) 'ROM name : $(TGT_ROM_NAME)'
  909. @$(ECHO)
  910. @$(ECHO) 'PCI vendor : $(TGT_PCI_VENDOR)'
  911. @$(ECHO) 'PCI device : $(TGT_PCI_DEVICE)'
  912. @$(ECHO)
  913. @$(ECHO) 'LD driver symbols : $(TGT_LD_DRIVERS)'
  914. @$(ECHO) 'LD ID symbols : $(TGT_LD_IDS)'
  915. @$(ECHO) 'LD devlist symbols : $(TGT_LD_DEVLIST)'
  916. @$(ECHO) 'LD entry point : $(TGT_LD_ENTRY)'
  917. @$(ECHO)
  918. @$(ECHO) 'LD target flags : $(TGT_LD_FLAGS)'
  919. @$(ECHO)
  920. @$(ECHO) 'Debugging objects : $(DEBUG_OBJS)'
  921. @$(ECHO) 'Replaced objects : $(DEBUG_ORIG_OBJS)'
  922. # List of objects included in the last build of blib. This is needed
  923. # in order to correctly rebuild blib whenever the list of objects
  924. # changes.
  925. #
  926. BLIB_LIST := $(BIN)/.blib.list
  927. ifeq ($(wildcard $(BLIB_LIST)),)
  928. BLIB_OBJS_OLD := <invalid>
  929. else
  930. BLIB_OBJS_OLD := $(shell cat $(BLIB_LIST))
  931. endif
  932. ifneq ($(BLIB_OBJS_OLD),$(BLIB_OBJS))
  933. $(shell $(ECHO) "$(BLIB_OBJS)" > $(BLIB_LIST))
  934. endif
  935. $(BLIB_LIST) : $(MAKEDEPS)
  936. VERYCLEANUP += $(BLIB_LIST)
  937. # Library of all objects
  938. #
  939. BLIB = $(BIN)/blib.a
  940. $(BLIB) : $(BLIB_OBJS) $(BLIB_LIST) $(MAKEDEPS)
  941. $(Q)$(RM) $(BLIB)
  942. $(QM)$(ECHO) " [AR] $@"
  943. $(Q)$(AR) r $@ $(sort $(BLIB_OBJS))
  944. $(Q)$(RANLIB) $@
  945. blib : $(BLIB)
  946. # Command to generate build ID. Must be unique for each $(BIN)/%.tmp,
  947. # even within the same build run.
  948. #
  949. BUILD_ID_CMD := perl -e 'printf "0x%08x", int ( rand ( 0xffffffff ) );'
  950. # Build timestamp
  951. #
  952. BUILD_TIMESTAMP := $(shell date +%s)
  953. # Build version
  954. #
  955. GIT_INDEX := $(if $(GITVERSION),$(if $(wildcard ../.git/index),../.git/index))
  956. $(BIN)/version.%.o : core/version.c $(MAKEDEPS) $(GIT_INDEX)
  957. $(QM)$(ECHO) " [VERSION] $@"
  958. $(Q)$(COMPILE_c) -DBUILD_NAME="\"$*\"" \
  959. -DVERSION_MAJOR=$(VERSION_MAJOR) \
  960. -DVERSION_MINOR=$(VERSION_MINOR) \
  961. -DVERSION_PATCH=$(VERSION_PATCH) \
  962. -DVERSION="\"$(VERSION)\"" \
  963. -c $< -o $@
  964. # Build an intermediate object file from the objects required for the
  965. # specified target.
  966. #
  967. $(BIN)/%.tmp : $(BIN)/version.%.o $(BLIB) $(MAKEDEPS) $(LDSCRIPT)
  968. $(QM)$(ECHO) " [LD] $@"
  969. $(Q)$(LD) $(LDFLAGS) -T $(LDSCRIPT) $(TGT_LD_FLAGS) $< $(BLIB) -o $@ \
  970. --defsym _build_id=`$(BUILD_ID_CMD)` \
  971. --defsym _build_timestamp=$(BUILD_TIMESTAMP) \
  972. -Map $(BIN)/$*.tmp.map
  973. $(Q)$(OBJDUMP) -ht $@ | $(PERL) $(SORTOBJDUMP) >> $(BIN)/$*.tmp.map
  974. # Keep intermediate object file (useful for debugging)
  975. .PRECIOUS : $(BIN)/%.tmp
  976. # Show a linker map for the specified target
  977. #
  978. $(BIN)/%.map : $(BIN)/%.tmp
  979. @less $(BIN)/$*.tmp.map
  980. # Get objects list for the specified target
  981. #
  982. define objs_list
  983. $(sort $(foreach OBJ_SYMBOL,\
  984. $(filter obj_%,$(shell $(NM) $(1) | cut -d" " -f3)),\
  985. $(patsubst obj_%,%,$(OBJ_SYMBOL))))
  986. endef
  987. $(BIN)/%.objs : $(BIN)/%.tmp
  988. $(Q)$(ECHO) $(call objs_list,$<)
  989. $(BIN)/%.sizes : $(BIN)/%.tmp
  990. $(Q)$(SIZE) -t $(foreach OBJ,$(call objs_list,$<),$(wildcard $(BIN)/$(subst _,?,$(OBJ)).o)) | \
  991. sort -g
  992. # Get dependency list for the specified target
  993. #
  994. define deps_list
  995. $(sort $(foreach OBJ,$(call objs_list,$(1)),$($(OBJ)_DEPS)))
  996. endef
  997. $(BIN)/%.deps : $(BIN)/%.tmp
  998. $(Q)$(ECHO) $(call deps_list,$<)
  999. # Get unneeded source files for the specified target
  1000. #
  1001. define nodeps_list
  1002. $(sort $(filter-out $(call deps_list,$(1)),\
  1003. $(foreach BOBJ,$(BOBJS),\
  1004. $($(basename $(notdir $(BOBJ)))_DEPS))))
  1005. endef
  1006. $(BIN)/%.nodeps : $(BIN)/%.tmp
  1007. $(Q)$(ECHO) $(call nodeps_list,$<)
  1008. # Get licensing verdict for the specified target
  1009. #
  1010. define licensable_deps_list
  1011. $(filter-out config/local/%.h,\
  1012. $(filter-out $(BIN)/.%.list,\
  1013. $(call deps_list,$(1))))
  1014. endef
  1015. define unlicensed_deps_list
  1016. $(shell grep -L FILE_LICENCE $(call licensable_deps_list,$(1)))
  1017. endef
  1018. define licence_list
  1019. $(sort $(foreach LICENCE,\
  1020. $(filter __licence__%,$(shell $(NM) $(1) | cut -d" " -f3)),\
  1021. $(word 2,$(subst __, ,$(LICENCE)))))
  1022. endef
  1023. $(BIN)/%.licence_list : $(BIN)/%.tmp
  1024. $(Q)$(ECHO) $(call licence_list,$<)
  1025. $(BIN)/%.licence : $(BIN)/%.tmp
  1026. $(QM)$(ECHO) " [LICENCE] $@"
  1027. $(Q)$(if $(strip $(call unlicensed_deps_list,$<)),\
  1028. echo -n "Unable to determine licence because the following " ;\
  1029. echo "files are missing a licence declaration:" ;\
  1030. echo $(call unlicensed_deps_list,$<);\
  1031. exit 1,\
  1032. $(PERL) $(LICENCE) $(call licence_list,$<))
  1033. # Extract compression information from intermediate object file
  1034. #
  1035. $(BIN)/%.zinfo : $(BIN)/%.tmp
  1036. $(QM)$(ECHO) " [ZINFO] $@"
  1037. $(Q)$(OBJCOPY) -O binary -j .zinfo $< $@
  1038. # Build raw binary file from intermediate object file
  1039. #
  1040. $(BIN)/%.bin : $(BIN)/%.tmp
  1041. $(QM)$(ECHO) " [BIN] $@"
  1042. $(Q)$(OBJCOPY) -O binary -R .zinfo $< $@
  1043. # Compress raw binary file
  1044. #
  1045. $(BIN)/%.zbin : $(BIN)/%.bin $(BIN)/%.zinfo $(ZBIN)
  1046. $(QM)$(ECHO) " [ZBIN] $@"
  1047. $(Q)$(ZBIN) $(BIN)/$*.bin $(BIN)/$*.zinfo > $@
  1048. # Rules for each media format. These are generated and placed in an
  1049. # external Makefile fragment. We could do this via $(eval ...), but
  1050. # that would require make >= 3.80.
  1051. #
  1052. # Note that there's an alternative way to generate most .rom images:
  1053. # they can be copied from their 'master' ROM image using cp and
  1054. # reprocessed with makerom to add the PCI IDs and ident string. The
  1055. # relevant rule would look something like:
  1056. #
  1057. # $(BIN)/dfe538%rom : $(BIN)/rtl8139%rom
  1058. # cat $< $@
  1059. # $(FINALISE_rom)
  1060. #
  1061. # You can derive the ROM/driver relationships using the variables
  1062. # DRIVER_<rom> and/or ROMS_<driver>.
  1063. #
  1064. # We don't currently do this, because (a) it would require generating
  1065. # yet more Makefile fragments (since you need a rule for each ROM in
  1066. # ROMS), and (b) the linker is so fast that it probably wouldn't make
  1067. # much difference to the overall build time.
  1068. # Add NON_AUTO_MEDIA to the media list, so that they show up in the
  1069. # output of "make"
  1070. #
  1071. MEDIA += $(NON_AUTO_MEDIA)
  1072. media :
  1073. @$(ECHO) $(MEDIA)
  1074. AUTO_MEDIA = $(filter-out $(NON_AUTO_MEDIA),$(MEDIA))
  1075. automedia :
  1076. @$(ECHO) $(AUTO_MEDIA)
  1077. # media_template : create media rules
  1078. #
  1079. # $(1) is the media name (e.g. "rom")
  1080. #
  1081. define media_template
  1082. $(if $(filter $(1),$(AUTO_MEDIA)),$(call auto_media_template,$(1)))
  1083. LIST_$(1) := $$(if $$(LIST_NAME_$(1)),$$($$(LIST_NAME_$(1))),$$(DRIVERS))
  1084. ALL_$(1) = $$(foreach ITEM,$$(LIST_$(1)),$$(BIN)/$$(ITEM).$(1))
  1085. $$(BIN)/all$(1)s : $$(ALL_$(1))
  1086. $$(BIN)/allall : $$(BIN)/all$(1)s
  1087. all$(1)s : $$(BIN)/all$(1)s
  1088. allall : $$(BIN)/allall
  1089. endef
  1090. #
  1091. # $(1) is the media name (e.g. "rom")
  1092. #
  1093. define auto_media_template
  1094. $$(BIN)/%.$(1) : $$(BIN)/%.$(1).zbin
  1095. $$(QM)echo " [FINISH] $$@"
  1096. $$(Q)$$(CP) $$< $$@
  1097. $$(Q)$$(if $$(PAD_$(1)),$$(PAD_$(1)) $$@)
  1098. $$(Q)$$(if $$(FINALISE_$(1)),$$(FINALISE_$(1)) $$@)
  1099. endef
  1100. #
  1101. # $(1) is the media name (e.g. "rom")
  1102. #
  1103. define media_template_file
  1104. @$(ECHO) " [MEDIARULES] $(1)"
  1105. @$(MKDIR) -p $(BIN)/rules/$(dir $(1))
  1106. @$(ECHO_E) '$(subst $(NEWLINE),\n,$(call media_template,$(1)))' \
  1107. > $(BIN)/rules/$(1).media.r
  1108. endef
  1109. # Generate media rules files
  1110. #
  1111. $(BIN)/rules/%.media.r : $(MAKEDEPS)
  1112. $(call media_template_file,$*)
  1113. # Calculate list of media rules files
  1114. #
  1115. MEDIA_RULES = $(patsubst %,$(BIN)/rules/%.media.r,$(MEDIA))
  1116. mediarules :
  1117. @$(ECHO) $(MEDIA_RULES)
  1118. # Evaluate media rules (or include media rules files)
  1119. #
  1120. ifdef NEED_DEPS
  1121. ifneq ($(MEDIA_RULES),)
  1122. ifneq ($(HAVE_EVAL),)
  1123. $(foreach MEDIUM,$(MEDIA),$(eval $(call media_template,$(MEDIUM))))
  1124. else
  1125. -include $(MEDIA_RULES)
  1126. endif
  1127. endif
  1128. endif
  1129. # Alias for ipxe.%
  1130. #
  1131. $(BIN)/etherboot.% : $(BIN)/ipxe.%
  1132. ln -sf $(notdir $<) $@
  1133. endif # defined(BIN)
  1134. ###############################################################################
  1135. #
  1136. # The compression utilities
  1137. #
  1138. ZBIN_LDFLAGS := -llzma
  1139. $(ZBIN) : util/zbin.c $(MAKEDEPS)
  1140. $(QM)$(ECHO) " [HOSTCC] $@"
  1141. $(Q)$(HOST_CC) $(HOST_CFLAGS) $< $(ZBIN_LDFLAGS) -o $@
  1142. CLEANUP += $(ZBIN)
  1143. ###############################################################################
  1144. #
  1145. # The EFI image converter
  1146. #
  1147. $(ELF2EFI32) : util/elf2efi.c $(MAKEDEPS)
  1148. $(QM)$(ECHO) " [HOSTCC] $@"
  1149. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -DEFI_TARGET32 $< -o $@
  1150. CLEANUP += $(ELF2EFI32)
  1151. $(ELF2EFI64) : util/elf2efi.c $(MAKEDEPS)
  1152. $(QM)$(ECHO) " [HOSTCC] $@"
  1153. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -DEFI_TARGET64 $< -o $@
  1154. CLEANUP += $(ELF2EFI64)
  1155. $(EFIROM) : util/efirom.c $(MAKEDEPS)
  1156. $(QM)$(ECHO) " [HOSTCC] $@"
  1157. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1158. CLEANUP += $(EFIROM)
  1159. $(EFIFATBIN) : util/efifatbin.c $(MAKEDEPS)
  1160. $(QM)$(ECHO) " [HOSTCC] $@"
  1161. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1162. CLEANUP += $(EFIFATBIN)
  1163. ###############################################################################
  1164. #
  1165. # The ICC fixup utility
  1166. #
  1167. $(ICCFIX) : util/iccfix.c $(MAKEDEPS)
  1168. $(QM)$(ECHO) " [HOSTCC] $@"
  1169. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1170. CLEANUP += $(ICCFIX)
  1171. ###############################################################################
  1172. #
  1173. # The error usage information utility
  1174. #
  1175. $(EINFO) : util/einfo.c $(MAKEDEPS)
  1176. $(QM)$(ECHO) " [HOSTCC] $@"
  1177. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1178. CLEANUP += $(EINFO)
  1179. ###############################################################################
  1180. #
  1181. # Local configs
  1182. #
  1183. CONFIG_HEADERS := $(patsubst config/%,%,$(wildcard config/*.h))
  1184. CONFIG_LOCAL_HEADERS := $(foreach HEADER,$(CONFIG_HEADERS),\
  1185. config/local/$(HEADER))
  1186. $(CONFIG_LOCAL_HEADERS) :
  1187. $(Q)$(TOUCH) $@
  1188. .PRECIOUS : $(CONFIG_LOCAL_HEADERS)
  1189. ifneq ($(CONFIG),)
  1190. CONFIG_LOCAL_NAMED_HEADERS := $(foreach HEADER,$(CONFIG_HEADERS),\
  1191. config/local/$(CONFIG)/$(HEADER))
  1192. $(CONFIG_LOCAL_NAMED_HEADERS) :
  1193. $(Q)$(MKDIR) -p $(dir $@)
  1194. $(Q)$(TOUCH) $@
  1195. .PRECIOUS : $(CONFIG_LOCAL_NAMED_HEADERS)
  1196. endif
  1197. ###############################################################################
  1198. #
  1199. # Build the TAGS file(s) for emacs
  1200. #
  1201. TAGS :
  1202. ctags -e -R -f $@ --exclude=bin
  1203. CLEANUP += TAGS
  1204. ###############################################################################
  1205. #
  1206. # Force rebuild for any given target
  1207. #
  1208. %.rebuild :
  1209. rm -f $*
  1210. $(Q)$(MAKE) $*
  1211. ###############################################################################
  1212. #
  1213. # Symbol table checks
  1214. #
  1215. ifdef BIN
  1216. SYMTAB = $(BIN)/symtab
  1217. $(SYMTAB) : $(BLIB)
  1218. $(OBJDUMP) -w -t $< > $@
  1219. CLEANUP += $(BIN)/symtab
  1220. symcheck : $(SYMTAB)
  1221. $(PERL) $(SYMCHECK) $<
  1222. endif # defined(BIN)
  1223. ###############################################################################
  1224. #
  1225. # Build bochs symbol table
  1226. #
  1227. ifdef BIN
  1228. $(BIN)/%.bxs : $(BIN)/%.tmp
  1229. $(NM) $< | cut -d" " -f1,3 > $@
  1230. endif # defined(BIN)
  1231. ###############################################################################
  1232. #
  1233. # Documentation
  1234. #
  1235. ifdef BIN
  1236. $(BIN)/doxygen.cfg : doxygen.cfg $(MAKEDEPS)
  1237. $(Q)$(PERL) -pe 's{\@SRCDIRS\@}{$(SRCDIRS)}; ' \
  1238. -e 's{\@INCDIRS\@}{$(filter-out .,$(INCDIRS))}; ' \
  1239. -e 's{\@BIN\@}{$(BIN)}; ' \
  1240. -e 's{\@ARCH\@}{$(ARCH)}; ' \
  1241. $< > $@
  1242. $(BIN)/doc : $(BIN)/doxygen.cfg
  1243. $(Q)$(DOXYGEN) $<
  1244. .PHONY : $(BIN)/doc
  1245. doc : $(BIN)/doc
  1246. doc-clean :
  1247. $(Q)$(RM) -r $(BIN)/doc
  1248. VERYCLEANUP += $(BIN)/doc
  1249. docview :
  1250. @[ -f $(BIN)/doc/html/index.html ] || $(MAKE) $(BIN)/doc
  1251. @if [ -n "$$BROWSER" ] ; then \
  1252. ( $$BROWSER $(BIN)/doc/html/index.html & ) ; \
  1253. else \
  1254. $(ECHO) "Documentation index in $(BIN)/doc/html/index.html" ; \
  1255. fi
  1256. endif # defined(BIN)
  1257. ###############################################################################
  1258. #
  1259. # Keyboard maps
  1260. #
  1261. hci/keymap/keymap_%.c :
  1262. $(Q)$(PERL) $(GENKEYMAP) $* > $@
  1263. ###############################################################################
  1264. #
  1265. # Force deletion of incomplete targets
  1266. #
  1267. .DELETE_ON_ERROR :
  1268. ###############################################################################
  1269. #
  1270. # Clean-up
  1271. #
  1272. ifeq ($(NUM_BINS),0)
  1273. ALLBINS := bin{,-*}
  1274. CLEANUP := $(patsubst $(BIN)/%,$(ALLBINS)/%,$(CLEANUP))
  1275. VERYCLEANUP := $(patsubst $(BIN)/%,$(ALLBINS)/%,$(VERYCLEANUP))
  1276. endif
  1277. clean :
  1278. $(RM) $(CLEANUP)
  1279. veryclean : clean
  1280. $(RM) -r $(VERYCLEANUP)