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 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458
  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. # Some widespread patched versions of gcc include -fPIE -Wl,-pie by
  139. # default. Note that gcc will exit *successfully* if it fails to
  140. # recognise an option that starts with "no", so we have to test for
  141. # output on stderr instead of checking the exit status.
  142. #
  143. ifeq ($(CCTYPE),gcc)
  144. PIE_TEST = [ -z "`$(CC) -fno-PIE -nopie -x c -c /dev/null -o /dev/null 2>&1`" ]
  145. PIE_FLAGS := $(shell $(PIE_TEST) && $(ECHO) '-fno-PIE -nopie')
  146. WORKAROUND_CFLAGS += $(PIE_FLAGS)
  147. endif
  148. # gcc 4.4 generates .eh_frame sections by default, which distort the
  149. # output of "size". Inhibit this.
  150. #
  151. ifeq ($(CCTYPE),gcc)
  152. CFI_TEST = $(CC) -fno-dwarf2-cfi-asm -fno-exceptions -fno-unwind-tables \
  153. -fno-asynchronous-unwind-tables -x c -c /dev/null \
  154. -o /dev/null >/dev/null 2>&1
  155. CFI_FLAGS := $(shell $(CFI_TEST) && \
  156. $(ECHO) '-fno-dwarf2-cfi-asm -fno-exceptions ' \
  157. '-fno-unwind-tables -fno-asynchronous-unwind-tables')
  158. WORKAROUND_CFLAGS += $(CFI_FLAGS)
  159. endif
  160. # gcc 4.6 generates spurious warnings if -Waddress is in force.
  161. # Inhibit this.
  162. #
  163. ifeq ($(CCTYPE),gcc)
  164. WNA_TEST = $(CC) -Wno-address -x c -c /dev/null -o /dev/null >/dev/null 2>&1
  165. WNA_FLAGS := $(shell $(WNA_TEST) && $(ECHO) '-Wno-address')
  166. WORKAROUND_CFLAGS += $(WNA_FLAGS)
  167. endif
  168. # Some versions of gas choke on division operators, treating them as
  169. # comment markers. Specifying --divide will work around this problem,
  170. # but isn't available on older gas versions.
  171. #
  172. DIVIDE_TEST = $(AS) --divide /dev/null -o /dev/null 2>/dev/null
  173. DIVIDE_FLAGS := $(shell $(DIVIDE_TEST) && $(ECHO) '--divide')
  174. WORKAROUND_ASFLAGS += $(DIVIDE_FLAGS)
  175. ###############################################################################
  176. #
  177. # Build verbosity
  178. #
  179. ifeq ($(V),1)
  180. Q :=
  181. QM := @\#
  182. else
  183. Q := @
  184. QM := @
  185. endif
  186. ###############################################################################
  187. #
  188. # Checker
  189. #
  190. ifeq ($(C),1)
  191. export REAL_CC := $(CC)
  192. CC := cgcc
  193. CFLAGS += -Wno-decl
  194. endif
  195. ###############################################################################
  196. #
  197. # Set BIN according to whatever was specified on the command line as
  198. # the build target.
  199. #
  200. # Determine how many different BIN directories are mentioned in the
  201. # make goals.
  202. #
  203. BIN_GOALS := $(filter bin bin/% bin-%,$(MAKECMDGOALS))
  204. BIN_GOALS_BINS := $(sort $(foreach BG,$(BIN_GOALS),\
  205. $(firstword $(subst /, ,$(BG)))))
  206. NUM_BINS := $(words $(BIN_GOALS_BINS))
  207. ifeq ($(NUM_BINS),0)
  208. # No BIN directory was specified. Set BIN to "bin" as a sensible
  209. # default.
  210. BIN := bin
  211. else # NUM_BINS == 0
  212. ifeq ($(NUM_BINS),1)
  213. # If exactly one BIN directory was specified, set BIN to match this
  214. # directory.
  215. #
  216. BIN := $(firstword $(BIN_GOALS_BINS))
  217. else # NUM_BINS == 1
  218. # More than one BIN directory was specified. We cannot handle the
  219. # latter case within a single make invocation, so set up recursive
  220. # targets for each BIN directory. Use exactly one target for each BIN
  221. # directory since running multiple make invocations within the same
  222. # BIN directory is likely to cause problems.
  223. #
  224. # Leave $(BIN) undefined. This has implications for any target that
  225. # depends on $(BIN); such targets should be made conditional upon the
  226. # existence of $(BIN).
  227. #
  228. BIN_GOALS_FIRST := $(foreach BGB,$(BIN_GOALS_BINS),\
  229. $(firstword $(filter $(BGB)/%,$(BIN_GOALS))))
  230. BIN_GOALS_OTHER := $(filter-out $(BIN_GOALS_FIRST),$(BIN_GOALS))
  231. $(BIN_GOALS_FIRST) : % : BIN_RECURSE
  232. $(Q)$(MAKE) --no-print-directory BIN=$(firstword $(subst /, ,$@)) \
  233. $(filter $(firstword $(subst /, ,$@))/%, $(BIN_GOALS))
  234. $(BIN_GOALS_OTHER) : % : BIN_RECURSE
  235. $(Q)$(TRUE)
  236. .PHONY : BIN_RECURSE
  237. endif # NUM_BINS == 1
  238. endif # NUM_BINS == 0
  239. ifdef BIN
  240. # Create $(BIN) directory if it doesn't exist yet
  241. #
  242. ifeq ($(wildcard $(BIN)),)
  243. $(shell $(MKDIR) -p $(BIN))
  244. endif
  245. # Target to allow e.g. "make bin-efi arch"
  246. #
  247. $(BIN) :
  248. @# Do nothing, silently
  249. .PHONY : $(BIN)
  250. # Remove everything in $(BIN) for a "make clean"
  251. #
  252. CLEANUP += $(BIN)/*.* # Avoid picking up directories
  253. endif # defined(BIN)
  254. # Determine whether or not we need to include the dependency files
  255. #
  256. NO_DEP_TARGETS := $(BIN) clean veryclean
  257. ifeq ($(MAKECMDGOALS),)
  258. NEED_DEPS := 1
  259. endif
  260. ifneq ($(strip $(filter-out $(NO_DEP_TARGETS),$(MAKECMDGOALS))),)
  261. NEED_DEPS := 1
  262. endif
  263. ###############################################################################
  264. #
  265. # Select build architecture and platform based on $(BIN)
  266. #
  267. # BIN has the form bin[-[arch-]platform]
  268. ARCHS := $(patsubst arch/%,%,$(wildcard arch/*))
  269. PLATFORMS := $(patsubst config/defaults/%.h,%,\
  270. $(wildcard config/defaults/*.h))
  271. archs :
  272. @$(ECHO) $(ARCHS)
  273. platforms :
  274. @$(ECHO) $(PLATFORMS)
  275. ifdef BIN
  276. # Determine architecture portion of $(BIN), if present
  277. BIN_ARCH := $(strip $(foreach A,$(ARCHS),\
  278. $(patsubst bin-$(A)-%,$(A),\
  279. $(filter bin-$(A)-%,$(BIN)))))
  280. # Determine platform portion of $(BIN), if present
  281. ifeq ($(BIN_ARCH),)
  282. BIN_PLATFORM := $(patsubst bin-%,%,$(filter bin-%,$(BIN)))
  283. else
  284. BIN_PLATFORM := $(patsubst bin-$(BIN_ARCH)-%,%,$(BIN))
  285. endif
  286. # Determine build architecture
  287. DEFAULT_ARCH := i386
  288. ARCH := $(firstword $(BIN_ARCH) $(DEFAULT_ARCH))
  289. CFLAGS += -DARCH=$(ARCH)
  290. arch :
  291. @$(ECHO) $(ARCH)
  292. .PHONY : arch
  293. # Determine build platform
  294. DEFAULT_PLATFORM := pcbios
  295. PLATFORM := $(firstword $(BIN_PLATFORM) $(DEFAULT_PLATFORM))
  296. CFLAGS += -DPLATFORM=$(PLATFORM)
  297. platform :
  298. @$(ECHO) $(PLATFORM)
  299. endif # defined(BIN)
  300. # Include architecture-specific Makefile
  301. ifdef ARCH
  302. MAKEDEPS += arch/$(ARCH)/Makefile
  303. include arch/$(ARCH)/Makefile
  304. endif
  305. # Include architecture-specific include path
  306. ifdef ARCH
  307. INCDIRS += arch/$(ARCH)/include
  308. INCDIRS += arch/$(ARCH)/include/$(PLATFORM)
  309. endif
  310. ###############################################################################
  311. #
  312. # Source file handling
  313. # SRCDIRS lists all directories containing source files.
  314. srcdirs :
  315. @$(ECHO) $(SRCDIRS)
  316. # SRCS lists all .c or .S files found in any SRCDIR
  317. #
  318. SRCS += $(wildcard $(patsubst %,%/*.c,$(SRCDIRS)))
  319. SRCS += $(wildcard $(patsubst %,%/*.S,$(SRCDIRS)))
  320. srcs :
  321. @$(ECHO) $(SRCS)
  322. # AUTO_SRCS lists all files in SRCS that are not mentioned in
  323. # NON_AUTO_SRCS. Files should be added to NON_AUTO_SRCS if they
  324. # cannot be built using the standard build template.
  325. #
  326. AUTO_SRCS = $(filter-out $(NON_AUTO_SRCS),$(SRCS))
  327. autosrcs :
  328. @$(ECHO) $(AUTO_SRCS)
  329. # Just about everything else in this section depends upon having
  330. # $(BIN) set
  331. ifdef BIN
  332. # INCDIRS lists the include path
  333. incdirs :
  334. @$(ECHO) $(INCDIRS)
  335. # Common flags
  336. #
  337. CFLAGS += $(foreach INC,$(INCDIRS),-I$(INC))
  338. CFLAGS += -Os
  339. CFLAGS += -g
  340. ifeq ($(CCTYPE),gcc)
  341. CFLAGS += -ffreestanding
  342. CFLAGS += -Wall -W -Wformat-nonliteral
  343. HOST_CFLAGS += -Wall -W -Wformat-nonliteral
  344. endif
  345. ifeq ($(CCTYPE),icc)
  346. CFLAGS += -fno-builtin
  347. CFLAGS += -no-ip
  348. CFLAGS += -no-gcc
  349. CFLAGS += -diag-disable 111 # Unreachable code
  350. CFLAGS += -diag-disable 128 # Unreachable loop
  351. CFLAGS += -diag-disable 170 # Array boundary checks
  352. CFLAGS += -diag-disable 177 # Unused functions
  353. CFLAGS += -diag-disable 181 # printf() format checks
  354. CFLAGS += -diag-disable 188 # enum strictness
  355. CFLAGS += -diag-disable 193 # Undefined preprocessor identifiers
  356. CFLAGS += -diag-disable 280 # switch ( constant )
  357. CFLAGS += -diag-disable 310 # K&R parameter lists
  358. CFLAGS += -diag-disable 424 # Extra semicolon
  359. CFLAGS += -diag-disable 589 # Declarations mid-code
  360. CFLAGS += -diag-disable 593 # Unused variables
  361. CFLAGS += -diag-disable 810 # Casting ints to smaller ints
  362. CFLAGS += -diag-disable 981 # Sequence point violations
  363. CFLAGS += -diag-disable 1292 # Ignored attributes
  364. CFLAGS += -diag-disable 1338 # void pointer arithmetic
  365. CFLAGS += -diag-disable 1361 # Variable-length arrays
  366. CFLAGS += -diag-disable 1418 # Missing prototypes
  367. CFLAGS += -diag-disable 1419 # Missing prototypes
  368. CFLAGS += -diag-disable 1599 # Hidden variables
  369. CFLAGS += -Wall -Wmissing-declarations
  370. endif
  371. CFLAGS += $(WORKAROUND_CFLAGS) $(EXTRA_CFLAGS)
  372. ASFLAGS += $(WORKAROUND_ASFLAGS) $(EXTRA_ASFLAGS)
  373. LDFLAGS += $(WORKAROUND_LDFLAGS) $(EXTRA_LDFLAGS)
  374. HOST_CFLAGS += -O2 -g
  375. # Inhibit -Werror if NO_WERROR is specified on make command line
  376. #
  377. ifneq ($(NO_WERROR),1)
  378. CFLAGS += -Werror
  379. ASFLAGS += --fatal-warnings
  380. HOST_CFLAGS += -Werror
  381. endif
  382. # Function trace recorder state in the last build. This is needed
  383. # in order to correctly rebuild whenever the function recorder is
  384. # enabled/disabled.
  385. #
  386. FNREC_STATE := $(BIN)/.fnrec.state
  387. ifeq ($(wildcard $(FNREC_STATE)),)
  388. FNREC_OLD := <invalid>
  389. else
  390. FNREC_OLD := $(shell cat $(FNREC_STATE))
  391. endif
  392. ifeq ($(FNREC_OLD),$(FNREC))
  393. $(FNREC_STATE) :
  394. else
  395. $(FNREC_STATE) : clean
  396. $(shell $(ECHO) "$(FNREC)" > $(FNREC_STATE))
  397. endif
  398. VERYCLEANUP += $(FNREC_STATE)
  399. MAKEDEPS += $(FNREC_STATE)
  400. ifeq ($(FNREC),1)
  401. # Enabling -finstrument-functions affects gcc's analysis and leads to spurious
  402. # warnings about use of uninitialised variables.
  403. #
  404. CFLAGS += -Wno-uninitialized
  405. CFLAGS += -finstrument-functions
  406. CFLAGS += -finstrument-functions-exclude-file-list=core/fnrec.c
  407. endif
  408. # Enable per-item sections and section garbage collection. Note that
  409. # some older versions of gcc support -fdata-sections but treat it as
  410. # implying -fno-common, which would break our build. Some other older
  411. # versions issue a spurious and uninhibitable warning if
  412. # -ffunction-sections is used with -g, which would also break our
  413. # build since we use -Werror.
  414. #
  415. ifeq ($(CCTYPE),gcc)
  416. DS_TEST = $(ECHO) 'char x;' | \
  417. $(CC) -fdata-sections -S -x c - -o - 2>/dev/null | \
  418. grep -E '\.comm' > /dev/null
  419. DS_FLAGS := $(shell $(DS_TEST) && $(ECHO) '-fdata-sections')
  420. FS_TEST = $(CC) -ffunction-sections -g -c -x c /dev/null \
  421. -o /dev/null 2>/dev/null
  422. FS_FLAGS := $(shell $(FS_TEST) && $(ECHO) '-ffunction-sections')
  423. CFLAGS += $(FS_FLAGS) $(DS_FLAGS)
  424. endif
  425. LDFLAGS += --gc-sections
  426. # Force creation of static binaries (required for OpenBSD, does no
  427. # harm on other platforms).
  428. #
  429. LDFLAGS += -static
  430. # compiler.h is needed for our linking and debugging system
  431. #
  432. CFLAGS += -include include/compiler.h
  433. # CFLAGS for specific object types
  434. #
  435. CFLAGS_c +=
  436. CFLAGS_S += -DASSEMBLY
  437. # Base object name of the current target
  438. #
  439. OBJECT = $(firstword $(subst ., ,$(@F)))
  440. # CFLAGS for specific object files. You can define
  441. # e.g. CFLAGS_rtl8139, and have those flags automatically used when
  442. # compiling bin/rtl8139.o.
  443. #
  444. OBJ_CFLAGS = $(CFLAGS_$(OBJECT)) -DOBJECT=$(subst -,_,$(OBJECT))
  445. $(BIN)/%.flags :
  446. @$(ECHO) $(OBJ_CFLAGS)
  447. # ICC requires postprocessing objects to fix up table alignments
  448. #
  449. ifeq ($(CCTYPE),icc)
  450. POST_O = && $(ICCFIX) $@
  451. POST_O_DEPS := $(ICCFIX)
  452. else
  453. POST_O :=
  454. POST_O_DEPS :=
  455. endif
  456. # Rules for specific object types.
  457. #
  458. COMPILE_c = $(CC) $(CFLAGS) $(CFLAGS_c) $(OBJ_CFLAGS)
  459. RULE_c = $(Q)$(COMPILE_c) -c $< -o $@ $(POST_O)
  460. RULE_c_to_dbg%.o = $(Q)$(COMPILE_c) -DDBGLVL_MAX=$* -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) -DDBGLVL_MAX=$* $< | $(ASSEMBLE_S) -o $@
  467. RULE_S_to_s = $(Q)$(PREPROCESS_S) $< > $@
  468. DEBUG_TARGETS += 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. # These files use .incbin inline assembly to include a binary file.
  603. # Unfortunately ccache does not detect this dependency and caches
  604. # builds even when the binary file has changed.
  605. #
  606. $(BIN)/embedded.% : override CC := env CCACHE_DISABLE=1 $(CC)
  607. $(BIN)/certstore.% : override CC := env CCACHE_DISABLE=1 $(CC)
  608. $(BIN)/privkey.% : override CC := env CCACHE_DISABLE=1 $(CC)
  609. # Debug message autocolourisation range
  610. #
  611. DBGCOL_LIST := $(BIN)/.dbgcol.list
  612. ifeq ($(wildcard $(DBGCOL_LIST)),)
  613. DBGCOL_OLD := <invalid>
  614. else
  615. DBGCOL_OLD := $(shell cat $(DBGCOL_LIST))
  616. endif
  617. ifneq ($(DBGCOL_OLD),$(DBGCOL))
  618. $(shell $(ECHO) "$(DBGCOL)" > $(DBGCOL_LIST))
  619. endif
  620. $(DBGCOL_LIST) : $(MAKEDEPS)
  621. VERYCLEANUP += $(DBGCOL_LIST)
  622. DBGCOL_COLOURS := $(subst -, ,$(DBGCOL))
  623. DBGCOL_MIN := $(word 1,$(DBGCOL_COLOURS))
  624. DBGCOL_MAX := $(word 2,$(DBGCOL_COLOURS))
  625. debug_DEPS += $(DBGCOL_LIST)
  626. CFLAGS_debug += $(if $(DBGCOL_MIN),-DDBGCOL_MIN=$(DBGCOL_MIN))
  627. CFLAGS_debug += $(if $(DBGCOL_MAX),-DDBGCOL_MAX=$(DBGCOL_MAX))
  628. # We automatically generate rules for any file mentioned in AUTO_SRCS
  629. # using the following set of templates. We use $(eval ...) if
  630. # available, otherwise we generate separate Makefile fragments and
  631. # include them.
  632. # deps_template : generate dependency list for a given source file
  633. #
  634. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  635. #
  636. define deps_template_file
  637. $(call deps_template_parts,$(1),$(subst .,,$(suffix $(1))),$(basename $(notdir $(1))))
  638. endef
  639. #
  640. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  641. # $(2) is the source type (e.g. "c")
  642. # $(3) is the source base name (e.g. "rtl8139")
  643. #
  644. define deps_template_parts
  645. @$(ECHO) " [DEPS] $(1)"
  646. @$(MKDIR) -p $(BIN)/deps/$(dir $(1))
  647. $(Q)$(CPP) $(CFLAGS) $(CFLAGS_$(2)) $(CFLAGS_$(3)) -DOBJECT=$(3) \
  648. -Wno-error -M $(1) -MG -MP | \
  649. sed 's/\.o\s*:/_DEPS +=/' > $(BIN)/deps/$(1).d
  650. $(Q)$(if $(findstring drivers/,$(1)),\
  651. $(PERL) $(PARSEROM) $(1) >> $(BIN)/deps/$(1).d)
  652. endef
  653. # rules_template : generate rules 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 rules_template
  658. $(call rules_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 rules_template_parts
  666. $$(BIN)/$(3).o : $(1) $$(MAKEDEPS) $$(POST_O_DEPS) $$($(3)_DEPS)
  667. $$(QM)$(ECHO) " [BUILD] $$@"
  668. $$(RULE_$(2))
  669. BOBJS += $$(BIN)/$(3).o
  670. $(foreach TGT,$(DEBUG_TARGETS),$(if $(RULE_$(2)_to_$(TGT)),$(NEWLINE)$(call rules_template_target,$(1),$(2),$(3),$(TGT))))
  671. $$(BIN)/deps/$(1).d : $$($(3)_DEPS)
  672. TAGS : $$($(3)_DEPS)
  673. endef
  674. #
  675. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  676. # $(2) is the source type (e.g. "c")
  677. # $(3) is the source base name (e.g. "rtl8139")
  678. # $(4) is the destination type (e.g. "dbg%.o")
  679. #
  680. define rules_template_target
  681. $$(BIN)/$(3).$(4) : $(1) $$(MAKEDEPS) $$(POST_O_DEPS) $$($(3)_DEPS)
  682. $$(QM)$(ECHO) " [BUILD] $$@"
  683. $$(RULE_$(2)_to_$(4))
  684. $(TGT)_OBJS += $$(BIN)/$(3).$(4)
  685. endef
  686. #
  687. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  688. #
  689. define rules_template_file
  690. @$(ECHO) " [RULES] $(1)"
  691. @$(MKDIR) -p $(BIN)/rules/$(dir $(1))
  692. @$(ECHO_E) '$(subst $(NEWLINE),\n,$(call rules_template,$(1)))' \
  693. > $(BIN)/rules/$(1).r
  694. endef
  695. # Generate the dependency files
  696. #
  697. $(BIN)/deps/%.d : % $(MAKEDEPS) $(PARSEROM)
  698. $(call deps_template_file,$<)
  699. # Calculate list of dependency files
  700. #
  701. AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS))
  702. autodeps :
  703. @$(ECHO) $(AUTO_DEPS)
  704. VERYCLEANUP += $(BIN)/deps
  705. # Include dependency files
  706. #
  707. ifdef NEED_DEPS
  708. ifneq ($(AUTO_DEPS),)
  709. -include $(AUTO_DEPS)
  710. endif
  711. endif
  712. # Generate the rules files
  713. #
  714. $(BIN)/rules/%.r : % $(MAKEDEPS)
  715. $(call rules_template_file,$<)
  716. # Calculate list of rules files
  717. #
  718. AUTO_RULES = $(patsubst %,$(BIN)/rules/%.r,$(AUTO_SRCS))
  719. autorules :
  720. @$(ECHO) $(AUTO_RULES)
  721. VERYCLEANUP += $(BIN)/rules
  722. # Evaluate rules (or include rules files)
  723. #
  724. ifdef NEED_DEPS
  725. ifneq ($(AUTO_RULES),)
  726. ifneq ($(HAVE_EVAL),)
  727. $(foreach SRC,$(AUTO_SRCS),$(eval $(call rules_template,$(SRC))))
  728. else
  729. -include $(AUTO_RULES)
  730. endif
  731. endif
  732. endif
  733. # The following variables are created by the rules files
  734. #
  735. bobjs :
  736. @$(ECHO) $(BOBJS)
  737. drivers :
  738. @$(ECHO) $(DRIVERS)
  739. .PHONY : drivers
  740. roms :
  741. @$(ECHO) $(ROMS)
  742. # Generate error usage information
  743. #
  744. $(BIN)/%.einfo : $(BIN)/%.o
  745. $(QM)$(ECHO) " [EINFO] $@"
  746. $(Q)$(OBJCOPY) -O binary -j .einfo --set-section-flags .einfo=alloc \
  747. $< $@
  748. EINFOS := $(patsubst $(BIN)/%.o,$(BIN)/%.einfo,$(BOBJS))
  749. $(BIN)/errors : $(EINFOS) $(EINFO)
  750. $(QM)$(ECHO) " [EINFO] $@"
  751. $(Q)$(EINFO) $(EINFOS) | sort > $@
  752. CLEANUP += $(BIN)/errors # Doesn't match the $(BIN)/*.* pattern
  753. # Generate the NIC file from the parsed source files. The NIC file is
  754. # only for rom-o-matic.
  755. #
  756. $(BIN)/NIC : $(AUTO_DEPS)
  757. @$(ECHO) '# This is an automatically generated file, do not edit' > $@
  758. @$(ECHO) '# It does not affect anything in the build, ' \
  759. 'it is only for rom-o-matic' >> $@
  760. @$(ECHO) >> $@
  761. @perl -ne 'chomp; print "$$1\n" if /\# NIC\t(.*)$$/' $^ >> $@
  762. CLEANUP += $(BIN)/NIC # Doesn't match the $(BIN)/*.* pattern
  763. # Analyse a target name (e.g. "bin/dfe538--prism2_pci.rom.tmp") and
  764. # derive the variables:
  765. #
  766. # TGT_ELEMENTS : the elements of the target (e.g. "dfe538 prism2_pci")
  767. # TGT_PREFIX : the prefix type (e.g. "pcirom")
  768. # TGT_DRIVERS : the driver for each element (e.g. "rtl8139 prism2_pci")
  769. # TGT_ROM_NAME : the ROM name (e.g. "dfe538")
  770. #
  771. DRIVERS_ipxe = $(DRIVERS)
  772. CARD_DRIVER = $(firstword $(DRIVER_$(1)) $(1))
  773. TGT_ELEMENTS = $(subst --, ,$(firstword $(subst ., ,$(notdir $@))))
  774. TGT_ROM_NAME = $(firstword $(TGT_ELEMENTS))
  775. TGT_DRIVERS = $(strip $(if $(DRIVERS_$(TGT_ROM_NAME)), \
  776. $(DRIVERS_$(TGT_ROM_NAME)), \
  777. $(foreach TGT_ELEMENT,$(TGT_ELEMENTS), \
  778. $(call CARD_DRIVER,$(TGT_ELEMENT))) ))
  779. TGT_PREFIX_NAME = $(word 2,$(subst ., ,$(notdir $@)))
  780. TGT_PREFIX = $(strip $(if $(filter rom,$(TGT_PREFIX_NAME)), \
  781. $(ROM_TYPE_$(TGT_ROM_NAME))rom, \
  782. $(TGT_PREFIX_NAME)))
  783. # Look up ROM IDs for the current target
  784. # (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the variables:
  785. #
  786. # TGT_PCI_VENDOR : the PCI vendor ID (e.g. "0x1186")
  787. # TGT_PCI_DEVICE : the PCI device ID (e.g. "0x1300")
  788. #
  789. TGT_PCI_VENDOR = $(PCI_VENDOR_$(TGT_ROM_NAME))
  790. TGT_PCI_DEVICE = $(PCI_DEVICE_$(TGT_ROM_NAME))
  791. # Calculate link-time options for the current target
  792. # (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the variables:
  793. #
  794. # TGT_LD_DRIVERS : symbols to require in order to drag in the relevant drivers
  795. # (e.g. "obj_rtl8139 obj_prism2_pci")
  796. # TGT_LD_IDS : symbols to define in order to fill in ID structures in the
  797. # ROM header (e.g."pci_vendor_id=0x1186 pci_device_id=0x1300")
  798. #
  799. TGT_LD_DRIVERS = $(subst -,_,$(patsubst %,obj_%,$(TGT_DRIVERS)))
  800. TGT_LD_IDS = pci_vendor_id=$(firstword $(TGT_PCI_VENDOR) 0) \
  801. pci_device_id=$(firstword $(TGT_PCI_DEVICE) 0)
  802. TGT_LD_ENTRY = _$(TGT_PREFIX)_start
  803. # Calculate linker flags based on link-time options for the current
  804. # target type (e.g. "bin/dfe538--prism2_pci.rom.tmp") and derive the
  805. # variables:
  806. #
  807. # TGT_LD_FLAGS : target-specific flags to pass to linker (e.g.
  808. # "-u obj_zpciprefix -u obj_rtl8139 -u obj_prism2_pci
  809. # --defsym pci_vendor=0x1186 --defsym pci_device=0x1300")
  810. #
  811. TGT_LD_FLAGS = $(foreach SYM,$(TGT_LD_ENTRY) $(TGT_LD_DRIVERS) obj_config,\
  812. -u $(SYM) --defsym check_$(SYM)=$(SYM) ) \
  813. $(patsubst %,--defsym %,$(TGT_LD_IDS)) \
  814. -e $(TGT_LD_ENTRY)
  815. # Calculate list of debugging versions of objects to be included in
  816. # the target.
  817. #
  818. DEBUG_LIST = $(subst $(COMMA), ,$(DEBUG))
  819. DEBUG_OBJ_LEVEL = $(firstword $(word 2,$(subst :, ,$(1))) 1)
  820. DEBUG_OBJ_BASE = $(word 1,$(subst :, ,$(1))).dbg$(call DEBUG_OBJ_LEVEL,$(1))
  821. DEBUG_OBJ = $(BIN)/$(call DEBUG_OBJ_BASE,$(1)).o
  822. DEBUG_ORIG_OBJ = $(BIN)/$(word 1,$(subst :, ,$(1))).o
  823. DEBUG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_OBJ,$(D)))
  824. DEBUG_ORIG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_ORIG_OBJ,$(D)))
  825. BLIB_OBJS = $(DEBUG_OBJS) $(filter-out $(DEBUG_ORIG_OBJS),$(BOBJS))
  826. # Print out all derived information for a given target.
  827. #
  828. $(BIN)/%.info :
  829. @$(ECHO) 'Elements : $(TGT_ELEMENTS)'
  830. @$(ECHO) 'Prefix : $(TGT_PREFIX)'
  831. @$(ECHO) 'Drivers : $(TGT_DRIVERS)'
  832. @$(ECHO) 'ROM name : $(TGT_ROM_NAME)'
  833. @$(ECHO)
  834. @$(ECHO) 'PCI vendor : $(TGT_PCI_VENDOR)'
  835. @$(ECHO) 'PCI device : $(TGT_PCI_DEVICE)'
  836. @$(ECHO)
  837. @$(ECHO) 'LD driver symbols : $(TGT_LD_DRIVERS)'
  838. @$(ECHO) 'LD ID symbols : $(TGT_LD_IDS)'
  839. @$(ECHO) 'LD entry point : $(TGT_LD_ENTRY)'
  840. @$(ECHO)
  841. @$(ECHO) 'LD target flags : $(TGT_LD_FLAGS)'
  842. @$(ECHO)
  843. @$(ECHO) 'Debugging objects : $(DEBUG_OBJS)'
  844. @$(ECHO) 'Replaced objects : $(DEBUG_ORIG_OBJS)'
  845. # List of objects included in the last build of blib. This is needed
  846. # in order to correctly rebuild blib whenever the list of objects
  847. # changes.
  848. #
  849. BLIB_LIST := $(BIN)/.blib.list
  850. ifeq ($(wildcard $(BLIB_LIST)),)
  851. BLIB_OBJS_OLD := <invalid>
  852. else
  853. BLIB_OBJS_OLD := $(shell cat $(BLIB_LIST))
  854. endif
  855. ifneq ($(BLIB_OBJS_OLD),$(BLIB_OBJS))
  856. $(shell $(ECHO) "$(BLIB_OBJS)" > $(BLIB_LIST))
  857. endif
  858. $(BLIB_LIST) : $(MAKEDEPS)
  859. VERYCLEANUP += $(BLIB_LIST)
  860. # Library of all objects
  861. #
  862. BLIB = $(BIN)/blib.a
  863. $(BLIB) : $(BLIB_OBJS) $(BLIB_LIST) $(MAKEDEPS)
  864. $(Q)$(RM) $(BLIB)
  865. $(QM)$(ECHO) " [AR] $@"
  866. $(Q)$(AR) r $@ $(sort $(BLIB_OBJS))
  867. $(Q)$(RANLIB) $@
  868. blib : $(BLIB)
  869. # Command to generate build ID. Must be unique for each $(BIN)/%.tmp,
  870. # even within the same build run.
  871. #
  872. BUILD_ID_CMD := perl -e 'printf "0x%08x", int ( rand ( 0xffffffff ) );'
  873. # Build timestamp
  874. #
  875. BUILD_TIMESTAMP := $(shell date +%s)
  876. # Build version
  877. #
  878. GIT_INDEX := $(if $(GITVERSION),$(if $(wildcard ../.git/index),../.git/index))
  879. $(BIN)/version.%.o : core/version.c $(MAKEDEPS) $(GIT_INDEX)
  880. $(QM)$(ECHO) " [VERSION] $@"
  881. $(Q)$(COMPILE_c) -DBUILD_NAME="\"$*\"" \
  882. -DVERSION_MAJOR=$(VERSION_MAJOR) \
  883. -DVERSION_MINOR=$(VERSION_MINOR) \
  884. -DVERSION_PATCH=$(VERSION_PATCH) \
  885. -DVERSION="\"$(VERSION)\"" \
  886. -c $< -o $@
  887. # Build an intermediate object file from the objects required for the
  888. # specified target.
  889. #
  890. $(BIN)/%.tmp : $(BIN)/version.%.o $(BLIB) $(MAKEDEPS) $(LDSCRIPT)
  891. $(QM)$(ECHO) " [LD] $@"
  892. $(Q)$(LD) $(LDFLAGS) -T $(LDSCRIPT) $(TGT_LD_FLAGS) $< $(BLIB) -o $@ \
  893. --defsym _build_id=`$(BUILD_ID_CMD)` \
  894. --defsym _build_timestamp=$(BUILD_TIMESTAMP) \
  895. -Map $(BIN)/$*.tmp.map
  896. $(Q)$(OBJDUMP) -ht $@ | $(PERL) $(SORTOBJDUMP) >> $(BIN)/$*.tmp.map
  897. # Keep intermediate object file (useful for debugging)
  898. .PRECIOUS : $(BIN)/%.tmp
  899. # Show a linker map for the specified target
  900. #
  901. $(BIN)/%.map : $(BIN)/%.tmp
  902. @less $(BIN)/$*.tmp.map
  903. # Get objects list for the specified target
  904. #
  905. define objs_list
  906. $(sort $(foreach OBJ_SYMBOL,\
  907. $(filter obj_%,$(shell $(NM) $(1) | cut -d" " -f3)),\
  908. $(patsubst obj_%,%,$(OBJ_SYMBOL))))
  909. endef
  910. $(BIN)/%.objs : $(BIN)/%.tmp
  911. $(Q)$(ECHO) $(call objs_list,$<)
  912. $(BIN)/%.sizes : $(BIN)/%.tmp
  913. $(Q)$(SIZE) -t $(foreach OBJ,$(call objs_list,$<),$(wildcard $(BIN)/$(subst _,?,$(OBJ)).o)) | \
  914. sort -g
  915. # Get dependency list for the specified target
  916. #
  917. define deps_list
  918. $(sort $(foreach OBJ,$(call objs_list,$(1)),$($(OBJ)_DEPS)))
  919. endef
  920. $(BIN)/%.deps : $(BIN)/%.tmp
  921. $(Q)$(ECHO) $(call deps_list,$<)
  922. # Get unneeded source files for the specified target
  923. #
  924. define nodeps_list
  925. $(sort $(filter-out $(call deps_list,$(1)),\
  926. $(foreach BOBJ,$(BOBJS),\
  927. $($(basename $(notdir $(BOBJ)))_DEPS))))
  928. endef
  929. $(BIN)/%.nodeps : $(BIN)/%.tmp
  930. $(Q)$(ECHO) $(call nodeps_list,$<)
  931. # Get licensing verdict for the specified target
  932. #
  933. define licensable_deps_list
  934. $(filter-out config/local/%.h,\
  935. $(filter-out $(BIN)/.%.list,\
  936. $(call deps_list,$(1))))
  937. endef
  938. define unlicensed_deps_list
  939. $(shell grep -L FILE_LICENCE $(call licensable_deps_list,$(1)))
  940. endef
  941. define licence_list
  942. $(sort $(foreach LICENCE,\
  943. $(filter __licence__%,$(shell $(NM) $(1) | cut -d" " -f3)),\
  944. $(word 2,$(subst __, ,$(LICENCE)))))
  945. endef
  946. $(BIN)/%.licence_list : $(BIN)/%.tmp
  947. $(Q)$(ECHO) $(call licence_list,$<)
  948. $(BIN)/%.licence : $(BIN)/%.tmp
  949. $(QM)$(ECHO) " [LICENCE] $@"
  950. $(Q)$(if $(strip $(call unlicensed_deps_list,$<)),\
  951. echo -n "Unable to determine licence because the following " ;\
  952. echo "files are missing a licence declaration:" ;\
  953. echo $(call unlicensed_deps_list,$<);\
  954. exit 1,\
  955. $(PERL) $(LICENCE) $(call licence_list,$<))
  956. # Extract compression information from intermediate object file
  957. #
  958. $(BIN)/%.zinfo : $(BIN)/%.tmp
  959. $(QM)$(ECHO) " [ZINFO] $@"
  960. $(Q)$(OBJCOPY) -O binary -j .zinfo $< $@
  961. # Build raw binary file from intermediate object file
  962. #
  963. $(BIN)/%.bin : $(BIN)/%.tmp
  964. $(QM)$(ECHO) " [BIN] $@"
  965. $(Q)$(OBJCOPY) -O binary -R .zinfo $< $@
  966. # Compress raw binary file
  967. #
  968. $(BIN)/%.zbin : $(BIN)/%.bin $(BIN)/%.zinfo $(ZBIN)
  969. $(QM)$(ECHO) " [ZBIN] $@"
  970. $(Q)$(ZBIN) $(BIN)/$*.bin $(BIN)/$*.zinfo > $@
  971. # Rules for each media format. These are generated and placed in an
  972. # external Makefile fragment. We could do this via $(eval ...), but
  973. # that would require make >= 3.80.
  974. #
  975. # Note that there's an alternative way to generate most .rom images:
  976. # they can be copied from their 'master' ROM image using cp and
  977. # reprocessed with makerom to add the PCI IDs and ident string. The
  978. # relevant rule would look something like:
  979. #
  980. # $(BIN)/dfe538%rom : $(BIN)/rtl8139%rom
  981. # cat $< $@
  982. # $(FINALISE_rom)
  983. #
  984. # You can derive the ROM/driver relationships using the variables
  985. # DRIVER_<rom> and/or ROMS_<driver>.
  986. #
  987. # We don't currently do this, because (a) it would require generating
  988. # yet more Makefile fragments (since you need a rule for each ROM in
  989. # ROMS), and (b) the linker is so fast that it probably wouldn't make
  990. # much difference to the overall build time.
  991. # Add NON_AUTO_MEDIA to the media list, so that they show up in the
  992. # output of "make"
  993. #
  994. MEDIA += $(NON_AUTO_MEDIA)
  995. media :
  996. @$(ECHO) $(MEDIA)
  997. AUTO_MEDIA = $(filter-out $(NON_AUTO_MEDIA),$(MEDIA))
  998. automedia :
  999. @$(ECHO) $(AUTO_MEDIA)
  1000. # media_template : create media rules
  1001. #
  1002. # $(1) is the media name (e.g. "rom")
  1003. #
  1004. define media_template
  1005. $(if $(filter $(1),$(AUTO_MEDIA)),$(call auto_media_template,$(1)))
  1006. LIST_$(1) := $$(if $$(LIST_NAME_$(1)),$$($$(LIST_NAME_$(1))),$$(DRIVERS))
  1007. ALL_$(1) = $$(foreach ITEM,$$(LIST_$(1)),$$(BIN)/$$(ITEM).$(1))
  1008. $$(BIN)/all$(1)s : $$(ALL_$(1))
  1009. $$(BIN)/allall : $$(BIN)/all$(1)s
  1010. all$(1)s : $$(BIN)/all$(1)s
  1011. allall : $$(BIN)/allall
  1012. endef
  1013. #
  1014. # $(1) is the media name (e.g. "rom")
  1015. #
  1016. define auto_media_template
  1017. $$(BIN)/%.$(1) : $$(BIN)/%.$(1).zbin
  1018. $$(QM)echo " [FINISH] $$@"
  1019. $$(Q)$$(CP) $$< $$@
  1020. $$(Q)$$(if $$(PAD_$(1)),$$(PAD_$(1)) $$@)
  1021. $$(Q)$$(if $$(FINALISE_$(1)),$$(FINALISE_$(1)) $$@)
  1022. endef
  1023. #
  1024. # $(1) is the media name (e.g. "rom")
  1025. #
  1026. define media_template_file
  1027. @$(ECHO) " [MEDIARULES] $(1)"
  1028. @$(MKDIR) -p $(BIN)/rules/$(dir $(1))
  1029. @$(ECHO_E) '$(subst $(NEWLINE),\n,$(call media_template,$(1)))' \
  1030. > $(BIN)/rules/$(1).media.r
  1031. endef
  1032. # Generate media rules files
  1033. #
  1034. $(BIN)/rules/%.media.r : $(MAKEDEPS)
  1035. $(call media_template_file,$*)
  1036. # Calculate list of media rules files
  1037. #
  1038. MEDIA_RULES = $(patsubst %,$(BIN)/rules/%.media.r,$(MEDIA))
  1039. mediarules :
  1040. @$(ECHO) $(MEDIA_RULES)
  1041. # Evaluate media rules (or include media rules files)
  1042. #
  1043. ifdef NEED_DEPS
  1044. ifneq ($(MEDIA_RULES),)
  1045. ifneq ($(HAVE_EVAL),)
  1046. $(foreach MEDIUM,$(MEDIA),$(eval $(call media_template,$(MEDIUM))))
  1047. else
  1048. -include $(MEDIA_RULES)
  1049. endif
  1050. endif
  1051. endif
  1052. # Alias for ipxe.%
  1053. #
  1054. $(BIN)/etherboot.% : $(BIN)/ipxe.%
  1055. ln -sf $(notdir $<) $@
  1056. endif # defined(BIN)
  1057. ###############################################################################
  1058. #
  1059. # The compression utilities
  1060. #
  1061. $(NRV2B) : util/nrv2b.c $(MAKEDEPS)
  1062. $(QM)$(ECHO) " [HOSTCC] $@"
  1063. $(Q)$(HOST_CC) $(HOST_CFLAGS) -DENCODE -DDECODE -DMAIN -DVERBOSE \
  1064. -DNDEBUG -DBITSIZE=32 -DENDIAN=0 -o $@ $<
  1065. CLEANUP += $(NRV2B)
  1066. $(ZBIN) : util/zbin.c util/nrv2b.c $(MAKEDEPS)
  1067. $(QM)$(ECHO) " [HOSTCC] $@"
  1068. $(Q)$(HOST_CC) $(HOST_CFLAGS) -o $@ $<
  1069. CLEANUP += $(ZBIN)
  1070. ###############################################################################
  1071. #
  1072. # The EFI image converter
  1073. #
  1074. ELF2EFI_CFLAGS := -I$(BINUTILS_DIR)/include -I$(BFD_DIR)/include \
  1075. -I$(ZLIB_DIR)/include -idirafter include
  1076. ELF2EFI_LDFLAGS := -L$(BINUTILS_DIR)/lib -L$(BFD_DIR)/lib -L$(ZLIB_DIR)/lib \
  1077. -lbfd -ldl -liberty -lz -Wl,--no-warn-search-mismatch
  1078. $(ELF2EFI32) : util/elf2efi.c $(MAKEDEPS)
  1079. $(QM)$(ECHO) " [HOSTCC] $@"
  1080. $(Q)$(HOST_CC) $(HOST_CFLAGS) $(ELF2EFI_CFLAGS) -DEFI_TARGET_IA32 $< \
  1081. $(ELF2EFI_LDFLAGS) -o $@
  1082. CLEANUP += $(ELF2EFI32)
  1083. $(ELF2EFI64) : util/elf2efi.c $(MAKEDEPS)
  1084. $(QM)$(ECHO) " [HOSTCC] $@"
  1085. $(Q)$(HOST_CC) $(HOST_CFLAGS) $(ELF2EFI_CFLAGS) -DEFI_TARGET_X64 $< \
  1086. $(ELF2EFI_LDFLAGS) -o $@
  1087. CLEANUP += $(ELF2EFI64)
  1088. $(EFIROM) : util/efirom.c $(MAKEDEPS)
  1089. $(QM)$(ECHO) " [HOSTCC] $@"
  1090. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1091. CLEANUP += $(EFIROM)
  1092. $(EFIFATBIN) : util/efifatbin.c $(MAKEDEPS)
  1093. $(QM)$(ECHO) " [HOSTCC] $@"
  1094. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1095. CLEANUP += $(EFIFATBIN)
  1096. ###############################################################################
  1097. #
  1098. # The ICC fixup utility
  1099. #
  1100. $(ICCFIX) : util/iccfix.c $(MAKEDEPS)
  1101. $(QM)$(ECHO) " [HOSTCC] $@"
  1102. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1103. CLEANUP += $(ICCFIX)
  1104. ###############################################################################
  1105. #
  1106. # The error usage information utility
  1107. #
  1108. $(EINFO) : util/einfo.c $(MAKEDEPS)
  1109. $(QM)$(ECHO) " [HOSTCC] $@"
  1110. $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $<
  1111. CLEANUP += $(EINFO)
  1112. ###############################################################################
  1113. #
  1114. # Local configs
  1115. #
  1116. CONFIG_HEADERS := $(patsubst config/%,%,$(wildcard config/*.h))
  1117. CONFIG_LOCAL_HEADERS := $(foreach HEADER,$(CONFIG_HEADERS),\
  1118. config/local/$(HEADER))
  1119. $(CONFIG_LOCAL_HEADERS) :
  1120. $(Q)$(TOUCH) $@
  1121. .PRECIOUS : $(CONFIG_LOCAL_HEADERS)
  1122. ifneq ($(CONFIG),)
  1123. CONFIG_LOCAL_NAMED_HEADERS := $(foreach HEADER,$(CONFIG_HEADERS),\
  1124. config/local/$(CONFIG)/$(HEADER))
  1125. $(CONFIG_LOCAL_NAMED_HEADERS) :
  1126. $(Q)$(MKDIR) -p $(dir $@)
  1127. $(Q)$(TOUCH) $@
  1128. .PRECIOUS : $(CONFIG_LOCAL_NAMED_HEADERS)
  1129. endif
  1130. ###############################################################################
  1131. #
  1132. # Auto-incrementing build serial number. Append "bs" to your list of
  1133. # build targets to get a serial number printed at the end of the
  1134. # build. Enable -DBUILD_SERIAL in order to see it when the code runs.
  1135. #
  1136. BUILDSERIAL_H = config/.buildserial.h
  1137. BUILDSERIAL_NOW = config/.buildserial.now
  1138. BUILDSERIAL_NEXT = config/.buildserial.next
  1139. $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT) :
  1140. $(ECHO) 1 > $@
  1141. $(BUILDSERIAL_H) : $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT)
  1142. $(ECHO) '#define BUILD_SERIAL_NUM $(shell cat $<)' > $@
  1143. ifeq ($(filter bs,$(MAKECMDGOALS)),bs)
  1144. $(shell diff -q $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT) > /dev/null || \
  1145. cp -f $(BUILDSERIAL_NEXT) $(BUILDSERIAL_NOW))
  1146. endif
  1147. bs : $(BUILDSERIAL_NOW)
  1148. @$(ECHO) $$(( $(shell cat $<) + 1 )) > $(BUILDSERIAL_NEXT)
  1149. @$(ECHO) "Build serial number is $(shell cat $<)"
  1150. ###############################################################################
  1151. #
  1152. # Build the TAGS file(s) for emacs
  1153. #
  1154. TAGS :
  1155. ctags -e -R -f $@ --exclude=bin
  1156. CLEANUP += TAGS
  1157. ###############################################################################
  1158. #
  1159. # Force rebuild for any given target
  1160. #
  1161. %.rebuild :
  1162. rm -f $*
  1163. $(Q)$(MAKE) $*
  1164. ###############################################################################
  1165. #
  1166. # Symbol table checks
  1167. #
  1168. ifdef BIN
  1169. SYMTAB = $(BIN)/symtab
  1170. $(SYMTAB) : $(BLIB)
  1171. $(OBJDUMP) -w -t $< > $@
  1172. CLEANUP += $(BIN)/symtab
  1173. symcheck : $(SYMTAB)
  1174. $(PERL) $(SYMCHECK) $<
  1175. endif # defined(BIN)
  1176. ###############################################################################
  1177. #
  1178. # Build bochs symbol table
  1179. #
  1180. ifdef BIN
  1181. $(BIN)/%.bxs : $(BIN)/%.tmp
  1182. $(NM) $< | cut -d" " -f1,3 > $@
  1183. endif # defined(BIN)
  1184. ###############################################################################
  1185. #
  1186. # Documentation
  1187. #
  1188. ifdef BIN
  1189. $(BIN)/doxygen.cfg : doxygen.cfg $(MAKEDEPS)
  1190. $(Q)$(PERL) -pe 's{\@SRCDIRS\@}{$(SRCDIRS)}; ' \
  1191. -e 's{\@INCDIRS\@}{$(filter-out .,$(INCDIRS))}; ' \
  1192. -e 's{\@BIN\@}{$(BIN)}; ' \
  1193. -e 's{\@ARCH\@}{$(ARCH)}; ' \
  1194. $< > $@
  1195. $(BIN)/doc : $(BIN)/doxygen.cfg
  1196. $(Q)$(DOXYGEN) $<
  1197. .PHONY : $(BIN)/doc
  1198. doc : $(BIN)/doc
  1199. doc-clean :
  1200. $(Q)$(RM) -r $(BIN)/doc
  1201. VERYCLEANUP += $(BIN)/doc
  1202. docview :
  1203. @[ -f $(BIN)/doc/html/index.html ] || $(MAKE) $(BIN)/doc
  1204. @if [ -n "$$BROWSER" ] ; then \
  1205. ( $$BROWSER $(BIN)/doc/html/index.html & ) ; \
  1206. else \
  1207. $(ECHO) "Documentation index in $(BIN)/doc/html/index.html" ; \
  1208. fi
  1209. endif # defined(BIN)
  1210. ###############################################################################
  1211. #
  1212. # Keyboard maps
  1213. #
  1214. hci/keymap/keymap_%.c :
  1215. $(Q)$(PERL) $(GENKEYMAP) $* > $@
  1216. ###############################################################################
  1217. #
  1218. # Force deletion of incomplete targets
  1219. #
  1220. .DELETE_ON_ERROR :
  1221. ###############################################################################
  1222. #
  1223. # Clean-up
  1224. #
  1225. ifeq ($(NUM_BINS),0)
  1226. ALLBINS := bin{,-*}
  1227. CLEANUP := $(patsubst $(BIN)/%,$(ALLBINS)/%,$(CLEANUP))
  1228. VERYCLEANUP := $(patsubst $(BIN)/%,$(ALLBINS)/%,$(VERYCLEANUP))
  1229. endif
  1230. clean :
  1231. $(RM) $(CLEANUP)
  1232. veryclean : clean
  1233. $(RM) -r $(VERYCLEANUP)