makefile 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. ## Copyright (C) 2017 Jeremiah Orians
  2. ## Copyright (C) 2020 deesix <deesix@tuta.io>
  3. ## This file is part of M2-Planet.
  4. ##
  5. ## M2-Planet is free software: you can redistribute it and/or modify
  6. ## it under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation, either version 3 of the License, or
  8. ## (at your option) any later version.
  9. ##
  10. ## M2-Planet is distributed in the hope that it will be useful,
  11. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ## GNU General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  17. # Prevent rebuilding
  18. VPATH = bin:test:test/results
  19. PACKAGE = m2-planet
  20. # C compiler settings
  21. CC?=gcc
  22. CFLAGS:=$(CFLAGS) -D_GNU_SOURCE -O0 -std=c99 -ggdb
  23. all: M2-Planet
  24. M2-Planet: bin results cc.h cc_reader.c cc_strings.c cc_types.c cc_core.c cc.c
  25. $(CC) $(CFLAGS) \
  26. functions/match.c \
  27. functions/in_set.c \
  28. functions/numerate_number.c \
  29. functions/file_print.c \
  30. functions/number_pack.c \
  31. functions/string.c \
  32. functions/require.c \
  33. cc_reader.c \
  34. cc_strings.c \
  35. cc_types.c \
  36. cc_core.c \
  37. cc.c \
  38. cc.h \
  39. gcc_req.h \
  40. -o bin/M2-Planet
  41. M2-minimal: bin results cc.h cc_reader.c cc_strings.c cc_types.c cc_core.c cc-minimal.c
  42. $(CC) $(CFLAGS) \
  43. functions/match.c \
  44. functions/in_set.c \
  45. functions/numerate_number.c \
  46. functions/file_print.c \
  47. functions/number_pack.c \
  48. functions/string.c \
  49. functions/require.c \
  50. cc_reader.c \
  51. cc_strings.c \
  52. cc_types.c \
  53. cc_core.c \
  54. cc-minimal.c \
  55. cc.h \
  56. gcc_req.h \
  57. -o bin/M2-minimal
  58. # Clean up after ourselves
  59. .PHONY: clean
  60. clean:
  61. rm -rf bin/ test/results/
  62. ./test/test0000/cleanup.sh
  63. ./test/test0001/cleanup.sh
  64. ./test/test0002/cleanup.sh
  65. ./test/test0003/cleanup.sh
  66. ./test/test0004/cleanup.sh
  67. ./test/test0005/cleanup.sh
  68. ./test/test0006/cleanup.sh
  69. ./test/test0007/cleanup.sh
  70. ./test/test0008/cleanup.sh
  71. ./test/test0009/cleanup.sh
  72. ./test/test0010/cleanup.sh
  73. ./test/test0011/cleanup.sh
  74. ./test/test0012/cleanup.sh
  75. ./test/test0013/cleanup.sh
  76. ./test/test0014/cleanup.sh
  77. ./test/test0015/cleanup.sh
  78. ./test/test0016/cleanup.sh
  79. ./test/test0017/cleanup.sh
  80. ./test/test0018/cleanup.sh
  81. ./test/test0019/cleanup.sh
  82. ./test/test0020/cleanup.sh
  83. ./test/test0021/cleanup.sh
  84. ./test/test0022/cleanup.sh
  85. ./test/test0023/cleanup.sh
  86. ./test/test0100/cleanup.sh
  87. ./test/test0101/cleanup.sh
  88. ./test/test0102/cleanup.sh
  89. ./test/test0103/cleanup.sh
  90. ./test/test0104/cleanup.sh
  91. ./test/test0105/cleanup.sh
  92. ./test/test0106/cleanup.sh
  93. ./test/test1000/cleanup.sh
  94. # Directories
  95. bin:
  96. mkdir -p bin
  97. results:
  98. mkdir -p test/results
  99. # tests
  100. test: test0000-aarch64-binary \
  101. test0001-aarch64-binary \
  102. test0002-aarch64-binary \
  103. test0003-aarch64-binary \
  104. test0004-aarch64-binary \
  105. test0005-aarch64-binary \
  106. test0006-aarch64-binary \
  107. test0007-aarch64-binary \
  108. test0008-aarch64-binary \
  109. test0009-aarch64-binary \
  110. test0010-aarch64-binary \
  111. test0011-aarch64-binary \
  112. test0012-aarch64-binary \
  113. test0013-aarch64-binary \
  114. test0014-aarch64-binary \
  115. test0015-aarch64-binary \
  116. test0016-aarch64-binary \
  117. test0017-aarch64-binary \
  118. test0018-aarch64-binary \
  119. test0019-aarch64-binary \
  120. test0020-aarch64-binary \
  121. test0021-aarch64-binary \
  122. test0022-aarch64-binary \
  123. test0023-aarch64-binary \
  124. test0100-aarch64-binary \
  125. test0101-aarch64-binary \
  126. test0102-aarch64-binary \
  127. test0103-aarch64-binary \
  128. test0104-aarch64-binary \
  129. test0105-aarch64-binary \
  130. test0106-aarch64-binary \
  131. test1000-aarch64-binary \
  132. test0000-amd64-binary \
  133. test0001-amd64-binary \
  134. test0002-amd64-binary \
  135. test0003-amd64-binary \
  136. test0004-amd64-binary \
  137. test0005-amd64-binary \
  138. test0006-amd64-binary \
  139. test0007-amd64-binary \
  140. test0008-amd64-binary \
  141. test0009-amd64-binary \
  142. test0010-amd64-binary \
  143. test0011-amd64-binary \
  144. test0012-amd64-binary \
  145. test0013-amd64-binary \
  146. test0014-amd64-binary \
  147. test0015-amd64-binary \
  148. test0016-amd64-binary \
  149. test0017-amd64-binary \
  150. test0018-amd64-binary \
  151. test0019-amd64-binary \
  152. test0020-amd64-binary \
  153. test0021-amd64-binary \
  154. test0022-amd64-binary \
  155. test0023-amd64-binary \
  156. test0100-amd64-binary \
  157. test0101-amd64-binary \
  158. test0102-amd64-binary \
  159. test0103-amd64-binary \
  160. test0104-amd64-binary \
  161. test0105-amd64-binary \
  162. test0106-amd64-binary \
  163. test1000-amd64-binary \
  164. test0000-knight-posix-binary \
  165. test0001-knight-posix-binary \
  166. test0002-knight-posix-binary \
  167. test0003-knight-posix-binary \
  168. test0004-knight-posix-binary \
  169. test0005-knight-posix-binary \
  170. test0006-knight-posix-binary \
  171. test0007-knight-posix-binary \
  172. test0008-knight-posix-binary \
  173. test0009-knight-posix-binary \
  174. test0010-knight-posix-binary \
  175. test0011-knight-posix-binary \
  176. test0012-knight-posix-binary \
  177. test0013-knight-posix-binary \
  178. test0014-knight-posix-binary \
  179. test0015-knight-posix-binary \
  180. test0016-knight-posix-binary \
  181. test0017-knight-posix-binary \
  182. test0018-knight-posix-binary \
  183. test0019-knight-posix-binary \
  184. test0020-knight-posix-binary \
  185. test0021-knight-posix-binary \
  186. test0022-knight-posix-binary \
  187. test0023-knight-posix-binary \
  188. test0100-knight-posix-binary \
  189. test0101-knight-posix-binary \
  190. test0102-knight-posix-binary \
  191. test0103-knight-posix-binary \
  192. test0106-knight-posix-binary \
  193. test1000-knight-posix-binary \
  194. test0000-knight-native-binary\
  195. test0001-knight-native-binary\
  196. test0002-knight-native-binary\
  197. test0003-knight-native-binary\
  198. test0004-knight-native-binary\
  199. test0005-knight-native-binary\
  200. test0006-knight-native-binary\
  201. test0007-knight-native-binary\
  202. test0008-knight-native-binary\
  203. test0009-knight-native-binary\
  204. test0010-knight-native-binary\
  205. test0011-knight-native-binary\
  206. test0012-knight-native-binary\
  207. test0013-knight-native-binary\
  208. test0017-knight-native-binary\
  209. test0018-knight-native-binary\
  210. test0020-knight-native-binary\
  211. test0106-knight-native-binary\
  212. test0000-armv7l-binary \
  213. test0001-armv7l-binary \
  214. test0002-armv7l-binary \
  215. test0003-armv7l-binary \
  216. test0004-armv7l-binary \
  217. test0005-armv7l-binary \
  218. test0006-armv7l-binary \
  219. test0007-armv7l-binary \
  220. test0008-armv7l-binary \
  221. test0009-armv7l-binary \
  222. test0010-armv7l-binary \
  223. test0011-armv7l-binary \
  224. test0012-armv7l-binary \
  225. test0013-armv7l-binary \
  226. test0014-armv7l-binary \
  227. test0015-armv7l-binary \
  228. test0016-armv7l-binary \
  229. test0017-armv7l-binary \
  230. test0018-armv7l-binary \
  231. test0019-armv7l-binary \
  232. test0020-armv7l-binary \
  233. test0021-armv7l-binary \
  234. test0022-armv7l-binary \
  235. test0023-armv7l-binary \
  236. test0100-armv7l-binary \
  237. test0101-armv7l-binary \
  238. test0102-armv7l-binary \
  239. test0103-armv7l-binary \
  240. test0104-armv7l-binary \
  241. test0105-armv7l-binary \
  242. test0106-armv7l-binary \
  243. test1000-armv7l-binary \
  244. test0000-x86-binary \
  245. test0001-x86-binary \
  246. test0002-x86-binary \
  247. test0003-x86-binary \
  248. test0004-x86-binary \
  249. test0005-x86-binary \
  250. test0006-x86-binary \
  251. test0007-x86-binary \
  252. test0008-x86-binary \
  253. test0009-x86-binary \
  254. test0010-x86-binary \
  255. test0011-x86-binary \
  256. test0012-x86-binary \
  257. test0013-x86-binary \
  258. test0014-x86-binary \
  259. test0015-x86-binary \
  260. test0016-x86-binary \
  261. test0017-x86-binary \
  262. test0018-x86-binary \
  263. test0019-x86-binary \
  264. test0020-x86-binary \
  265. test0021-x86-binary \
  266. test0022-x86-binary \
  267. test0023-x86-binary \
  268. test0100-x86-binary \
  269. test0101-x86-binary \
  270. test0102-x86-binary \
  271. test0103-x86-binary \
  272. test0104-x86-binary \
  273. test0105-x86-binary \
  274. test0106-x86-binary \
  275. test1000-x86-binary | results
  276. sha256sum -c test/test.answers
  277. test0000-aarch64-binary: M2-Planet | results
  278. test/test0000/hello-aarch64.sh
  279. test0001-aarch64-binary: M2-Planet | results
  280. test/test0001/hello-aarch64.sh
  281. test0002-aarch64-binary: M2-Planet | results
  282. test/test0002/hello-aarch64.sh
  283. test0003-aarch64-binary: M2-Planet | results
  284. test/test0003/hello-aarch64.sh
  285. test0004-aarch64-binary: M2-Planet | results
  286. test/test0004/hello-aarch64.sh
  287. test0005-aarch64-binary: M2-Planet | results
  288. test/test0005/hello-aarch64.sh
  289. test0006-aarch64-binary: M2-Planet | results
  290. test/test0006/hello-aarch64.sh
  291. test0007-aarch64-binary: M2-Planet | results
  292. test/test0007/hello-aarch64.sh
  293. test0008-aarch64-binary: M2-Planet | results
  294. test/test0008/hello-aarch64.sh
  295. test0009-aarch64-binary: M2-Planet | results
  296. test/test0009/hello-aarch64.sh
  297. test0010-aarch64-binary: M2-Planet | results
  298. test/test0010/hello-aarch64.sh
  299. test0011-aarch64-binary: M2-Planet | results
  300. test/test0011/hello-aarch64.sh
  301. test0012-aarch64-binary: M2-Planet | results
  302. test/test0012/hello-aarch64.sh
  303. test0013-aarch64-binary: M2-Planet | results
  304. test/test0013/hello-aarch64.sh
  305. test0014-aarch64-binary: M2-Planet | results
  306. test/test0014/hello-aarch64.sh
  307. test0015-aarch64-binary: M2-Planet | results
  308. test/test0015/hello-aarch64.sh
  309. test0016-aarch64-binary: M2-Planet | results
  310. test/test0016/hello-aarch64.sh
  311. test0017-aarch64-binary: M2-Planet | results
  312. test/test0017/hello-aarch64.sh
  313. test0018-aarch64-binary: M2-Planet | results
  314. test/test0018/hello-aarch64.sh
  315. test0019-aarch64-binary: M2-Planet | results
  316. test/test0019/hello-aarch64.sh
  317. test0020-aarch64-binary: M2-Planet | results
  318. test/test0020/hello-aarch64.sh
  319. test0021-aarch64-binary: M2-Planet | results
  320. test/test0021/hello-aarch64.sh
  321. test0022-aarch64-binary: M2-Planet | results
  322. test/test0022/hello-aarch64.sh
  323. test0023-aarch64-binary: M2-Planet | results
  324. test/test0023/hello-aarch64.sh
  325. test0100-aarch64-binary: M2-Planet | results
  326. test/test0100/hello-aarch64.sh
  327. test0101-aarch64-binary: M2-Planet | results
  328. test/test0101/hello-aarch64.sh
  329. test0102-aarch64-binary: M2-Planet | results
  330. test/test0102/hello-aarch64.sh
  331. test0103-aarch64-binary: M2-Planet | results
  332. test/test0103/hello-aarch64.sh
  333. test0104-aarch64-binary: M2-Planet | results
  334. test/test0104/hello-aarch64.sh
  335. test0105-aarch64-binary: M2-Planet | results
  336. test/test0105/hello-aarch64.sh
  337. test0106-aarch64-binary: M2-Planet | results
  338. test/test0106/hello-aarch64.sh
  339. test1000-aarch64-binary: M2-Planet | results
  340. test/test1000/hello-aarch64.sh
  341. test0000-amd64-binary: M2-Planet | results
  342. test/test0000/hello-amd64.sh
  343. test0001-amd64-binary: M2-Planet | results
  344. test/test0001/hello-amd64.sh
  345. test0002-amd64-binary: M2-Planet | results
  346. test/test0002/hello-amd64.sh
  347. test0003-amd64-binary: M2-Planet | results
  348. test/test0003/hello-amd64.sh
  349. test0004-amd64-binary: M2-Planet | results
  350. test/test0004/hello-amd64.sh
  351. test0005-amd64-binary: M2-Planet | results
  352. test/test0005/hello-amd64.sh
  353. test0006-amd64-binary: M2-Planet | results
  354. test/test0006/hello-amd64.sh
  355. test0007-amd64-binary: M2-Planet | results
  356. test/test0007/hello-amd64.sh
  357. test0008-amd64-binary: M2-Planet | results
  358. test/test0008/hello-amd64.sh
  359. test0009-amd64-binary: M2-Planet | results
  360. test/test0009/hello-amd64.sh
  361. test0010-amd64-binary: M2-Planet | results
  362. test/test0010/hello-amd64.sh
  363. test0011-amd64-binary: M2-Planet | results
  364. test/test0011/hello-amd64.sh
  365. test0012-amd64-binary: M2-Planet | results
  366. test/test0012/hello-amd64.sh
  367. test0013-amd64-binary: M2-Planet | results
  368. test/test0013/hello-amd64.sh
  369. test0014-amd64-binary: M2-Planet | results
  370. test/test0014/hello-amd64.sh
  371. test0015-amd64-binary: M2-Planet | results
  372. test/test0015/hello-amd64.sh
  373. test0016-amd64-binary: M2-Planet | results
  374. test/test0016/hello-amd64.sh
  375. test0017-amd64-binary: M2-Planet | results
  376. test/test0017/hello-amd64.sh
  377. test0018-amd64-binary: M2-Planet | results
  378. test/test0018/hello-amd64.sh
  379. test0019-amd64-binary: M2-Planet | results
  380. test/test0019/hello-amd64.sh
  381. test0020-amd64-binary: M2-Planet | results
  382. test/test0020/hello-amd64.sh
  383. test0021-amd64-binary: M2-Planet | results
  384. test/test0021/hello-amd64.sh
  385. test0022-amd64-binary: M2-Planet | results
  386. test/test0022/hello-amd64.sh
  387. test0023-amd64-binary: M2-Planet | results
  388. test/test0023/hello-amd64.sh
  389. test0100-amd64-binary: M2-Planet | results
  390. test/test0100/hello-amd64.sh
  391. test0101-amd64-binary: M2-Planet | results
  392. test/test0101/hello-amd64.sh
  393. test0102-amd64-binary: M2-Planet | results
  394. test/test0102/hello-amd64.sh
  395. test0103-amd64-binary: M2-Planet | results
  396. test/test0103/hello-amd64.sh
  397. test0104-amd64-binary: M2-Planet | results
  398. test/test0104/hello-amd64.sh
  399. test0105-amd64-binary: M2-Planet | results
  400. test/test0105/hello-amd64.sh
  401. test0106-amd64-binary: M2-Planet | results
  402. test/test0106/hello-amd64.sh
  403. test1000-amd64-binary: M2-Planet | results
  404. test/test1000/hello-amd64.sh
  405. test0000-knight-posix-binary: M2-Planet | results
  406. test/test0000/hello-knight-posix.sh
  407. test0001-knight-posix-binary: M2-Planet | results
  408. test/test0001/hello-knight-posix.sh
  409. test0002-knight-posix-binary: M2-Planet | results
  410. test/test0002/hello-knight-posix.sh
  411. test0003-knight-posix-binary: M2-Planet | results
  412. test/test0003/hello-knight-posix.sh
  413. test0004-knight-posix-binary: M2-Planet | results
  414. test/test0004/hello-knight-posix.sh
  415. test0005-knight-posix-binary: M2-Planet | results
  416. test/test0005/hello-knight-posix.sh
  417. test0006-knight-posix-binary: M2-Planet | results
  418. test/test0006/hello-knight-posix.sh
  419. test0007-knight-posix-binary: M2-Planet | results
  420. test/test0007/hello-knight-posix.sh
  421. test0008-knight-posix-binary: M2-Planet | results
  422. test/test0008/hello-knight-posix.sh
  423. test0009-knight-posix-binary: M2-Planet | results
  424. test/test0009/hello-knight-posix.sh
  425. test0010-knight-posix-binary: M2-Planet | results
  426. test/test0010/hello-knight-posix.sh
  427. test0011-knight-posix-binary: M2-Planet | results
  428. test/test0011/hello-knight-posix.sh
  429. test0012-knight-posix-binary: M2-Planet | results
  430. test/test0012/hello-knight-posix.sh
  431. test0013-knight-posix-binary: M2-Planet | results
  432. test/test0013/hello-knight-posix.sh
  433. test0014-knight-posix-binary: M2-Planet | results
  434. test/test0014/hello-knight-posix.sh
  435. test0015-knight-posix-binary: M2-Planet | results
  436. test/test0015/hello-knight-posix.sh
  437. test0016-knight-posix-binary: M2-Planet | results
  438. test/test0016/hello-knight-posix.sh
  439. test0017-knight-posix-binary: M2-Planet | results
  440. test/test0017/hello-knight-posix.sh
  441. test0018-knight-posix-binary: M2-Planet | results
  442. test/test0018/hello-knight-posix.sh
  443. test0019-knight-posix-binary: M2-Planet | results
  444. test/test0019/hello-knight-posix.sh
  445. test0020-knight-posix-binary: M2-Planet | results
  446. test/test0020/hello-knight-posix.sh
  447. test0021-knight-posix-binary: M2-Planet | results
  448. test/test0021/hello-knight-posix.sh
  449. test0022-knight-posix-binary: M2-Planet | results
  450. test/test0022/hello-knight-posix.sh
  451. test0023-knight-posix-binary: M2-Planet | results
  452. test/test0023/hello-knight-posix.sh
  453. test0100-knight-posix-binary: M2-Planet | results
  454. test/test0100/hello-knight-posix.sh
  455. test0101-knight-posix-binary: M2-Planet | results
  456. test/test0101/hello-knight-posix.sh
  457. test0102-knight-posix-binary: M2-Planet | results
  458. test/test0102/hello-knight-posix.sh
  459. test0103-knight-posix-binary: M2-Planet | results
  460. test/test0103/hello-knight-posix.sh
  461. test0106-knight-posix-binary: M2-Planet | results
  462. test/test0106/hello-knight-posix.sh
  463. test1000-knight-posix-binary: M2-Planet | results
  464. test/test1000/hello-knight-posix.sh
  465. test0000-knight-native-binary: M2-Planet | results
  466. test/test0000/hello-knight-native.sh
  467. test0001-knight-native-binary: M2-Planet | results
  468. test/test0001/hello-knight-native.sh
  469. test0002-knight-native-binary: M2-Planet | results
  470. test/test0002/hello-knight-native.sh
  471. test0003-knight-native-binary: M2-Planet | results
  472. test/test0003/hello-knight-native.sh
  473. test0004-knight-native-binary: M2-Planet | results
  474. test/test0004/hello-knight-native.sh
  475. test0005-knight-native-binary: M2-Planet | results
  476. test/test0005/hello-knight-native.sh
  477. test0006-knight-native-binary: M2-Planet | results
  478. test/test0006/hello-knight-native.sh
  479. test0007-knight-native-binary: M2-Planet | results
  480. test/test0007/hello-knight-native.sh
  481. test0008-knight-native-binary: M2-Planet | results
  482. test/test0008/hello-knight-native.sh
  483. test0009-knight-native-binary: M2-Planet | results
  484. test/test0009/hello-knight-native.sh
  485. test0010-knight-native-binary: M2-Planet | results
  486. test/test0010/hello-knight-native.sh
  487. test0011-knight-native-binary: M2-Planet | results
  488. test/test0011/hello-knight-native.sh
  489. test0012-knight-native-binary: M2-Planet | results
  490. test/test0012/hello-knight-native.sh
  491. test0013-knight-native-binary: M2-Planet | results
  492. test/test0013/hello-knight-native.sh
  493. test0017-knight-native-binary: M2-Planet | results
  494. test/test0017/hello-knight-native.sh
  495. test0018-knight-native-binary: M2-Planet | results
  496. test/test0018/hello-knight-native.sh
  497. test0020-knight-native-binary: M2-Planet | results
  498. test/test0020/hello-knight-native.sh
  499. test0106-knight-native-binary: M2-Planet | results
  500. test/test0106/hello-knight-native.sh
  501. test0000-armv7l-binary: M2-Planet | results
  502. test/test0000/hello-armv7l.sh
  503. test0001-armv7l-binary: M2-Planet | results
  504. test/test0001/hello-armv7l.sh
  505. test0002-armv7l-binary: M2-Planet | results
  506. test/test0002/hello-armv7l.sh
  507. test0003-armv7l-binary: M2-Planet | results
  508. test/test0003/hello-armv7l.sh
  509. test0004-armv7l-binary: M2-Planet | results
  510. test/test0004/hello-armv7l.sh
  511. test0005-armv7l-binary: M2-Planet | results
  512. test/test0005/hello-armv7l.sh
  513. test0006-armv7l-binary: M2-Planet | results
  514. test/test0006/hello-armv7l.sh
  515. test0007-armv7l-binary: M2-Planet | results
  516. test/test0007/hello-armv7l.sh
  517. test0008-armv7l-binary: M2-Planet | results
  518. test/test0008/hello-armv7l.sh
  519. test0009-armv7l-binary: M2-Planet | results
  520. test/test0009/hello-armv7l.sh
  521. test0010-armv7l-binary: M2-Planet | results
  522. test/test0010/hello-armv7l.sh
  523. test0011-armv7l-binary: M2-Planet | results
  524. test/test0011/hello-armv7l.sh
  525. test0012-armv7l-binary: M2-Planet | results
  526. test/test0012/hello-armv7l.sh
  527. test0013-armv7l-binary: M2-Planet | results
  528. test/test0013/hello-armv7l.sh
  529. test0014-armv7l-binary: M2-Planet | results
  530. test/test0014/hello-armv7l.sh
  531. test0015-armv7l-binary: M2-Planet | results
  532. test/test0015/hello-armv7l.sh
  533. test0016-armv7l-binary: M2-Planet | results
  534. test/test0016/hello-armv7l.sh
  535. test0017-armv7l-binary: M2-Planet | results
  536. test/test0017/hello-armv7l.sh
  537. test0018-armv7l-binary: M2-Planet | results
  538. test/test0018/hello-armv7l.sh
  539. test0019-armv7l-binary: M2-Planet | results
  540. test/test0019/hello-armv7l.sh
  541. test0020-armv7l-binary: M2-Planet | results
  542. test/test0020/hello-armv7l.sh
  543. test0021-armv7l-binary: M2-Planet | results
  544. test/test0021/hello-armv7l.sh
  545. test0022-armv7l-binary: M2-Planet | results
  546. test/test0022/hello-armv7l.sh
  547. test0023-armv7l-binary: M2-Planet | results
  548. test/test0023/hello-armv7l.sh
  549. test0100-armv7l-binary: M2-Planet | results
  550. test/test0100/hello-armv7l.sh
  551. test0101-armv7l-binary: M2-Planet | results
  552. test/test0101/hello-armv7l.sh
  553. test0102-armv7l-binary: M2-Planet | results
  554. test/test0102/hello-armv7l.sh
  555. test0103-armv7l-binary: M2-Planet | results
  556. test/test0103/hello-armv7l.sh
  557. test0104-armv7l-binary: M2-Planet | results
  558. test/test0104/hello-armv7l.sh
  559. test0105-armv7l-binary: M2-Planet | results
  560. test/test0105/hello-armv7l.sh
  561. test0106-armv7l-binary: M2-Planet | results
  562. test/test0106/hello-armv7l.sh
  563. test1000-armv7l-binary: M2-Planet | results
  564. test/test1000/hello-armv7l.sh
  565. test0000-x86-binary: M2-Planet | results
  566. test/test0000/hello-x86.sh
  567. test0001-x86-binary: M2-Planet | results
  568. test/test0001/hello-x86.sh
  569. test0002-x86-binary: M2-Planet | results
  570. test/test0002/hello-x86.sh
  571. test0003-x86-binary: M2-Planet | results
  572. test/test0003/hello-x86.sh
  573. test0004-x86-binary: M2-Planet | results
  574. test/test0004/hello-x86.sh
  575. test0005-x86-binary: M2-Planet | results
  576. test/test0005/hello-x86.sh
  577. test0006-x86-binary: M2-Planet | results
  578. test/test0006/hello-x86.sh
  579. test0007-x86-binary: M2-Planet | results
  580. test/test0007/hello-x86.sh
  581. test0008-x86-binary: M2-Planet | results
  582. test/test0008/hello-x86.sh
  583. test0009-x86-binary: M2-Planet | results
  584. test/test0009/hello-x86.sh
  585. test0010-x86-binary: M2-Planet | results
  586. test/test0010/hello-x86.sh
  587. test0011-x86-binary: M2-Planet | results
  588. test/test0011/hello-x86.sh
  589. test0012-x86-binary: M2-Planet | results
  590. test/test0012/hello-x86.sh
  591. test0013-x86-binary: M2-Planet | results
  592. test/test0013/hello-x86.sh
  593. test0014-x86-binary: M2-Planet | results
  594. test/test0014/hello-x86.sh
  595. test0015-x86-binary: M2-Planet | results
  596. test/test0015/hello-x86.sh
  597. test0016-x86-binary: M2-Planet | results
  598. test/test0016/hello-x86.sh
  599. test0017-x86-binary: M2-Planet | results
  600. test/test0017/hello-x86.sh
  601. test0018-x86-binary: M2-Planet | results
  602. test/test0018/hello-x86.sh
  603. test0019-x86-binary: M2-Planet | results
  604. test/test0019/hello-x86.sh
  605. test0020-x86-binary: M2-Planet | results
  606. test/test0020/hello-x86.sh
  607. test0021-x86-binary: M2-Planet | results
  608. test/test0021/hello-x86.sh
  609. test0022-x86-binary: M2-Planet | results
  610. test/test0022/hello-x86.sh
  611. test0023-x86-binary: M2-Planet | results
  612. test/test0023/hello-x86.sh
  613. test0100-x86-binary: M2-Planet | results
  614. test/test0100/hello-x86.sh
  615. test0101-x86-binary: M2-Planet | results
  616. test/test0101/hello-x86.sh
  617. test0102-x86-binary: M2-Planet | results
  618. test/test0102/hello-x86.sh
  619. test0103-x86-binary: M2-Planet | results
  620. test/test0103/hello-x86.sh
  621. test0104-x86-binary: M2-Planet | results
  622. test/test0104/hello-x86.sh
  623. test0105-x86-binary: M2-Planet | results
  624. test/test0105/hello-x86.sh
  625. test0106-x86-binary: M2-Planet | results
  626. test/test0106/hello-x86.sh
  627. test1000-x86-binary: M2-Planet | results
  628. test/test1000/hello-x86.sh
  629. # Generate test answers
  630. .PHONY: Generate-test-answers
  631. Generate-test-answers:
  632. sha256sum test/results/* >| test/test.answers
  633. DESTDIR:=
  634. PREFIX:=/usr/local
  635. bindir:=$(DESTDIR)$(PREFIX)/bin
  636. .PHONY: install
  637. install: M2-Planet
  638. mkdir -p $(bindir)
  639. cp $^ $(bindir)
  640. ### dist
  641. .PHONY: dist
  642. COMMIT=$(shell git describe --dirty)
  643. TARBALL_VERSION=$(COMMIT:Release_%=%)
  644. TARBALL_DIR:=$(PACKAGE)-$(TARBALL_VERSION)
  645. TARBALL=$(TARBALL_DIR).tar.gz
  646. # Be friendly to Debian; avoid using EPOCH
  647. MTIME=$(shell git show HEAD --format=%ct --no-patch)
  648. # Reproducible tarball
  649. TAR_FLAGS=--sort=name --mtime=@$(MTIME) --owner=0 --group=0 --numeric-owner --mode=go=rX,u+rw,a-s
  650. $(TARBALL):
  651. (git ls-files \
  652. --exclude=$(TARBALL_DIR); \
  653. echo $^ | tr ' ' '\n') \
  654. | tar $(TAR_FLAGS) \
  655. --transform=s,^,$(TARBALL_DIR)/,S -T- -cf- \
  656. | gzip -c --no-name > $@
  657. dist: $(TARBALL)