Makefile.am 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2009, 2010-2011 Université de Bordeaux 1
  4. # Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
  5. # Copyright (C) 2011 Télécom-SudParis
  6. #
  7. # StarPU is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU Lesser General Public License as published by
  9. # the Free Software Foundation; either version 2.1 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # StarPU is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. #
  16. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. AM_CFLAGS = $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS)
  18. LIBS = $(top_builddir)/src/libstarpu.la $(MAGMA_LIBS) $(HWLOC_LIBS) @LIBS@
  19. AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/examples/ -I$(top_builddir)/include
  20. AM_LDFLAGS = $(STARPU_CUDA_LDFLAGS) $(STARPU_OPENCL_LDFLAGS)
  21. SUBDIRS = stencil
  22. if STARPU_USE_SOCL
  23. SUBDIRS += socl
  24. endif
  25. if STARPU_HAVE_FFTW
  26. if STARPU_HAVE_FFTWF
  27. SUBDIRS += starpufft
  28. endif
  29. endif
  30. BUILT_SOURCES =
  31. if STARPU_USE_OPENCL
  32. nobase_STARPU_OPENCL_DATA_DATA =
  33. endif
  34. EXTRA_DIST = \
  35. basic_examples/vector_scal_opencl_kernel.cl \
  36. basic_examples/multiformat_opencl_kernel.cl \
  37. basic_examples/multiformat_conversion_codelets_opencl_kernel.cl \
  38. common/blas_model.c \
  39. spmv/spmv_cuda.cu \
  40. spmv/spmv_opencl.cl \
  41. gordon/null_kernel_gordon.c \
  42. mult/xgemm.c \
  43. lu/xlu.c \
  44. lu/xlu_pivot.c \
  45. lu/xlu_implicit.c \
  46. lu/xlu_implicit_pivot.c \
  47. lu/xlu_kernels.c \
  48. lu/lu_example.c \
  49. incrementer/incrementer_kernels_opencl_kernel.cl \
  50. basic_examples/variable_kernels_opencl_kernel.cl \
  51. matvecmult/matvecmult_kernel.cl \
  52. basic_examples/block_opencl_kernel.cl \
  53. openmp/vector_scal.c \
  54. filters/fblock_opencl_kernel.cl
  55. CLEANFILES = \
  56. gordon/null_kernel_gordon.spuelf
  57. CLEANFILES += *.gcno *.gcda *.linkinfo
  58. if STARPU_USE_CUDA
  59. NVCCFLAGS += --compiler-options -fno-strict-aliasing -I$(top_srcdir)/include/ -I$(top_builddir)/include/ -I$(top_srcdir)/examples/ $(HWLOC_CFLAGS) -arch sm_13
  60. .cu.o:
  61. $(NVCC) $< -c -o $@ $(NVCCFLAGS)
  62. endif
  63. if STARPU_USE_GORDON
  64. SPU_CC ?= spu-gcc
  65. SPU_LD ?= spu-ld
  66. SPULDFLAGS =
  67. SPULIBS = -lblas #-lc -lgloss -lc
  68. .c.spuo:
  69. $(MKDIR_P) `dirname $@`
  70. $(SPU_CC) -c -fpic $< -o $@
  71. .spuo.spuelf:
  72. $(MKDIR_P) `dirname $@`
  73. $(SPU_LD) $(SPULDFLAGS) $< -o $@ $(SPULIBS)
  74. BUILT_SOURCES += \
  75. gordon/null_kernel_gordon.spuelf
  76. endif
  77. examplebindir = $(libdir)/starpu/examples/
  78. examplebin_PROGRAMS =
  79. noinst_HEADERS = \
  80. cg/cg.h \
  81. heat/lu_kernels_model.h \
  82. heat/dw_sparse_cg.h \
  83. heat/heat.h \
  84. heat/dw_factolu.h \
  85. lu/xlu.h \
  86. lu/xlu_kernels.h \
  87. lu/float.h \
  88. lu/double.h \
  89. lu/complex_float.h \
  90. lu/complex_double.h \
  91. lu/blas_complex.h \
  92. cholesky/cholesky.h \
  93. common/blas_model.h \
  94. common/blas.h \
  95. mult/simple.h \
  96. mult/double.h \
  97. gordon/null.h \
  98. fortran/bindings/StarPU_fortran.h \
  99. ppm_downscaler/ppm_downscaler.h \
  100. ppm_downscaler/yuv_downscaler.h \
  101. spmv/matrix_market/mmio.h \
  102. spmv/matrix_market/mm_to_bcsr.h \
  103. spmv/spmv.h \
  104. spmv/dw_block_spmv.h \
  105. basic_examples/multiformat_types.h
  106. #####################################
  107. # What to install and what to check #
  108. #####################################
  109. STARPU_EXAMPLES =
  110. TESTS = $(STARPU_EXAMPLES)
  111. if STARPU_HAVE_WINDOWS
  112. check_PROGRAMS = $(STARPU_EXAMPLES)
  113. else
  114. check_PROGRAMS = $(LOADER) $(STARPU_EXAMPLES)
  115. endif
  116. if !STARPU_HAVE_WINDOWS
  117. ## test loader program
  118. LOADER = loader
  119. LOADER_BIN = $(abs_top_builddir)/examples/$(LOADER)
  120. loader_SOURCES = ../tests/loader.c
  121. TESTS_ENVIRONMENT = $(LOADER_BIN)
  122. endif
  123. examplebin_PROGRAMS += \
  124. basic_examples/hello_world \
  125. basic_examples/vector_scal \
  126. basic_examples/mult \
  127. basic_examples/block \
  128. basic_examples/variable \
  129. basic_examples/multiformat \
  130. filters/fvector \
  131. filters/fblock \
  132. filters/fmatrix \
  133. tag_example/tag_example \
  134. tag_example/tag_example3 \
  135. tag_example/tag_example2 \
  136. tag_example/tag_restartable \
  137. spmv/spmv \
  138. callback/callback \
  139. incrementer/incrementer \
  140. matvecmult/matvecmult \
  141. profiling/profiling \
  142. scheduler/dummy_sched \
  143. reductions/dot_product \
  144. reductions/minmax_reduction \
  145. mandelbrot/mandelbrot \
  146. ppm_downscaler/ppm_downscaler \
  147. ppm_downscaler/yuv_downscaler
  148. if STARPU_HAVE_F77_H
  149. examplebin_PROGRAMS += \
  150. basic_examples/vector_scal_fortran
  151. endif
  152. if !NO_BLAS_LIB
  153. examplebin_PROGRAMS += \
  154. axpy/axpy \
  155. mult/sgemm \
  156. mult/dgemm \
  157. cholesky/cholesky_tag \
  158. cholesky/cholesky_tile_tag \
  159. cholesky/cholesky_grain_tag \
  160. cholesky/cholesky_implicit \
  161. lu/lu_example_float \
  162. lu/lu_example_double \
  163. lu/lu_implicit_example_float \
  164. lu/lu_implicit_example_double \
  165. heat/heat \
  166. cg/cg
  167. endif
  168. if MKL_BLAS_LIB
  169. examplebin_PROGRAMS += \
  170. lu/lu_example_complex_float \
  171. lu/lu_example_complex_double \
  172. lu/lu_implicit_example_complex_float \
  173. lu/lu_implicit_example_complex_double
  174. endif
  175. if ATLAS_BLAS_LIB
  176. examplebin_PROGRAMS += \
  177. spmv/dw_block_spmv
  178. endif
  179. STARPU_EXAMPLES += \
  180. basic_examples/hello_world \
  181. basic_examples/vector_scal \
  182. basic_examples/mult \
  183. basic_examples/block \
  184. basic_examples/variable \
  185. basic_examples/multiformat \
  186. filters/fvector \
  187. filters/fblock \
  188. filters/fmatrix \
  189. tag_example/tag_example \
  190. tag_example/tag_example3 \
  191. tag_example/tag_example2 \
  192. tag_example/tag_restartable \
  193. spmv/spmv \
  194. callback/callback \
  195. incrementer/incrementer \
  196. matvecmult/matvecmult \
  197. profiling/profiling \
  198. scheduler/dummy_sched \
  199. reductions/dot_product \
  200. reductions/minmax_reduction
  201. if STARPU_HAVE_F77_H
  202. STARPU_EXAMPLES += \
  203. basic_examples/vector_scal_fortran
  204. endif
  205. if !NO_BLAS_LIB
  206. STARPU_EXAMPLES += \
  207. axpy/axpy \
  208. mult/sgemm \
  209. mult/dgemm \
  210. cholesky/cholesky_tag \
  211. cholesky/cholesky_tile_tag \
  212. cholesky/cholesky_grain_tag \
  213. cholesky/cholesky_implicit \
  214. lu/lu_example_float \
  215. lu/lu_example_double \
  216. lu/lu_implicit_example_float \
  217. lu/lu_implicit_example_double \
  218. heat/heat \
  219. cg/cg
  220. endif
  221. if MKL_BLAS_LIB
  222. STARPU_EXAMPLES += \
  223. lu/lu_example_complex_float \
  224. lu/lu_example_complex_double \
  225. lu/lu_implicit_example_complex_float \
  226. lu/lu_implicit_example_complex_double
  227. endif
  228. if ATLAS_BLAS_LIB
  229. STARPU_EXAMPLES += \
  230. spmv/dw_block_spmv
  231. endif
  232. ##################
  233. # Basic examples #
  234. ##################
  235. basic_examples_vector_scal_SOURCES = \
  236. basic_examples/vector_scal.c \
  237. basic_examples/vector_scal_cpu.c
  238. if STARPU_USE_CUDA
  239. basic_examples_vector_scal_SOURCES += \
  240. basic_examples/vector_scal_cuda.cu
  241. endif
  242. if STARPU_USE_OPENCL
  243. basic_examples_vector_scal_SOURCES += \
  244. basic_examples/vector_scal_opencl.c
  245. nobase_STARPU_OPENCL_DATA_DATA += \
  246. basic_examples/vector_scal_opencl_kernel.cl
  247. endif
  248. if STARPU_HAVE_F77_H
  249. basic_examples_vector_scal_fortran_SOURCES = \
  250. basic_examples/vector_scal_fortran.F \
  251. basic_examples/vector_scal_c.c \
  252. basic_examples/vector_scal_cpu.c
  253. if STARPU_USE_CUDA
  254. basic_examples_vector_scal_fortran_SOURCES += \
  255. basic_examples/vector_scal_cuda.cu
  256. basic_examples_vector_scal_fortran_LDADD = \
  257. $(STARPU_CUDA_FORTRAN_LDFLAGS)
  258. endif
  259. endif
  260. #######################
  261. # Multiformat example #
  262. #######################
  263. basic_examples_multiformat_SOURCES = \
  264. basic_examples/multiformat.c \
  265. basic_examples/multiformat_conversion_codelets.c
  266. if STARPU_USE_CUDA
  267. basic_examples_multiformat_SOURCES+= \
  268. basic_examples/multiformat_cuda.cu \
  269. basic_examples/multiformat_conversion_codelets_cuda.cu
  270. endif
  271. if STARPU_USE_OPENCL
  272. basic_examples_multiformat_SOURCES+= \
  273. basic_examples/multiformat_opencl.c \
  274. basic_examples/multiformat_conversion_codelets_opencl.c
  275. nobase_STARPU_OPENCL_DATA_DATA+= \
  276. basic_examples/multiformat_opencl_kernel.cl \
  277. basic_examples/multiformat_conversion_codelets_opencl_kernel.cl
  278. endif
  279. #################
  280. # block example #
  281. #################
  282. basic_examples_block_SOURCES = \
  283. basic_examples/block.c \
  284. basic_examples/block_cpu.c
  285. if STARPU_USE_CUDA
  286. basic_examples_block_SOURCES += \
  287. basic_examples/block_cuda.cu
  288. endif
  289. if STARPU_USE_OPENCL
  290. basic_examples_block_SOURCES += \
  291. basic_examples/block_opencl.c
  292. nobase_STARPU_OPENCL_DATA_DATA += \
  293. basic_examples/block_opencl_kernel.cl
  294. endif
  295. ####################
  296. # Variable example #
  297. ####################
  298. basic_examples_variable_SOURCES = \
  299. basic_examples/variable.c \
  300. basic_examples/variable_kernels_cpu.c
  301. if STARPU_USE_CUDA
  302. basic_examples_variable_SOURCES += \
  303. basic_examples/variable_kernels.cu
  304. endif
  305. if STARPU_USE_OPENCL
  306. basic_examples_variable_SOURCES += \
  307. basic_examples/variable_kernels_opencl.c
  308. nobase_STARPU_OPENCL_DATA_DATA += \
  309. basic_examples/variable_kernels_opencl_kernel.cl
  310. endif
  311. ###########
  312. # Filters #
  313. ###########
  314. filters_fblock_SOURCES = \
  315. filters/fblock.c \
  316. filters/fblock_cpu.c
  317. if STARPU_USE_CUDA
  318. filters_fblock_SOURCES += \
  319. filters/fblock_cuda.cu
  320. endif
  321. if STARPU_USE_OPENCL
  322. filters_fblock_SOURCES += \
  323. filters/fblock_opencl.c
  324. nobase_STARPU_OPENCL_DATA_DATA += \
  325. filters/fblock_opencl_kernel.cl
  326. endif
  327. ################
  328. # AXPY example #
  329. ################
  330. if !NO_BLAS_LIB
  331. axpy_axpy_SOURCES = \
  332. axpy/axpy.c \
  333. common/blas.c
  334. axpy_axpy_LDADD = \
  335. $(STARPU_BLAS_LDFLAGS)
  336. endif
  337. ################
  338. # Mult example #
  339. ################
  340. if !NO_BLAS_LIB
  341. mult_sgemm_SOURCES = \
  342. mult/sgemm.c \
  343. common/blas.c
  344. mult_sgemm_LDADD = \
  345. $(STARPU_BLAS_LDFLAGS)
  346. mult_dgemm_SOURCES = \
  347. mult/dgemm.c \
  348. common/blas.c
  349. mult_dgemm_LDADD = \
  350. $(STARPU_BLAS_LDFLAGS)
  351. endif
  352. ####################
  353. # Cholesky example #
  354. ####################
  355. if !NO_BLAS_LIB
  356. cholesky_cholesky_tag_SOURCES = \
  357. cholesky/cholesky_tag.c \
  358. cholesky/cholesky_models.c \
  359. cholesky/cholesky_kernels.c \
  360. common/blas.c
  361. cholesky_cholesky_tag_LDADD = \
  362. $(STARPU_BLAS_LDFLAGS)
  363. cholesky_cholesky_tile_tag_SOURCES = \
  364. cholesky/cholesky_tile_tag.c \
  365. cholesky/cholesky_models.c \
  366. cholesky/cholesky_kernels.c \
  367. common/blas.c
  368. cholesky_cholesky_tile_tag_LDADD = \
  369. $(STARPU_BLAS_LDFLAGS)
  370. cholesky_cholesky_grain_tag_SOURCES = \
  371. cholesky/cholesky_grain_tag.c \
  372. cholesky/cholesky_models.c \
  373. cholesky/cholesky_kernels.c \
  374. common/blas.c
  375. cholesky_cholesky_grain_tag_LDADD = \
  376. $(STARPU_BLAS_LDFLAGS)
  377. cholesky_cholesky_implicit_SOURCES = \
  378. cholesky/cholesky_implicit.c \
  379. cholesky/cholesky_models.c \
  380. cholesky/cholesky_kernels.c \
  381. common/blas.c
  382. cholesky_cholesky_implicit_LDADD = \
  383. $(STARPU_BLAS_LDFLAGS)
  384. endif
  385. ##############
  386. # LU example #
  387. ##############
  388. if !NO_BLAS_LIB
  389. lu_lu_example_float_SOURCES = \
  390. lu/lu_example_float.c \
  391. lu/slu.c \
  392. lu/slu_pivot.c \
  393. lu/slu_kernels.c \
  394. common/blas.c
  395. lu_lu_example_float_LDADD = \
  396. $(STARPU_BLAS_LDFLAGS)
  397. lu_lu_example_double_SOURCES = \
  398. lu/lu_example_double.c \
  399. lu/dlu.c \
  400. lu/dlu_pivot.c \
  401. lu/dlu_kernels.c \
  402. common/blas.c
  403. lu_lu_example_double_LDADD = \
  404. $(STARPU_BLAS_LDFLAGS)
  405. lu_lu_implicit_example_float_SOURCES = \
  406. lu/lu_example_float.c \
  407. lu/slu_implicit.c \
  408. lu/slu_implicit_pivot.c \
  409. lu/slu_kernels.c \
  410. common/blas.c
  411. lu_lu_implicit_example_float_LDADD = \
  412. $(STARPU_BLAS_LDFLAGS)
  413. lu_lu_implicit_example_double_SOURCES = \
  414. lu/lu_example_double.c \
  415. lu/dlu_implicit.c \
  416. lu/dlu_implicit_pivot.c \
  417. lu/dlu_kernels.c \
  418. common/blas.c
  419. lu_lu_implicit_example_double_LDADD = \
  420. $(STARPU_BLAS_LDFLAGS)
  421. if MKL_BLAS_LIB
  422. lu_lu_example_complex_float_SOURCES = \
  423. lu/lu_example_complex_float.c \
  424. lu/clu.c \
  425. lu/clu_pivot.c \
  426. lu/clu_kernels.c \
  427. lu/blas_complex.c \
  428. common/blas.c
  429. lu_lu_example_complex_float_LDADD = \
  430. $(STARPU_BLAS_LDFLAGS)
  431. lu_lu_implicit_example_complex_float_SOURCES = \
  432. lu/lu_example_complex_float.c \
  433. lu/clu_implicit.c \
  434. lu/clu_implicit_pivot.c \
  435. lu/clu_kernels.c \
  436. lu/blas_complex.c \
  437. common/blas.c
  438. lu_lu_implicit_example_complex_float_LDADD = \
  439. $(STARPU_BLAS_LDFLAGS)
  440. lu_lu_example_complex_double_SOURCES = \
  441. lu/lu_example_complex_double.c \
  442. lu/zlu.c \
  443. lu/zlu_pivot.c \
  444. lu/zlu_kernels.c \
  445. lu/blas_complex.c \
  446. common/blas.c
  447. lu_lu_example_complex_double_LDADD = \
  448. $(STARPU_BLAS_LDFLAGS)
  449. lu_lu_implicit_example_complex_double_SOURCES = \
  450. lu/lu_example_complex_double.c \
  451. lu/zlu_implicit.c \
  452. lu/zlu_implicit_pivot.c \
  453. lu/zlu_kernels.c \
  454. lu/blas_complex.c \
  455. common/blas.c
  456. lu_lu_implicit_example_complex_double_LDADD = \
  457. $(STARPU_BLAS_LDFLAGS)
  458. endif
  459. endif
  460. ################
  461. # Heat example #
  462. ################
  463. if !NO_BLAS_LIB
  464. heat_heat_SOURCES = \
  465. heat/heat.c \
  466. heat/dw_factolu.c \
  467. heat/dw_factolu_tag.c \
  468. heat/dw_factolu_grain.c \
  469. heat/dw_sparse_cg.c \
  470. heat/heat_display.c \
  471. heat/lu_kernels_model.c \
  472. heat/dw_sparse_cg_kernels.c \
  473. heat/dw_factolu_kernels.c \
  474. common/blas.c
  475. heat_heat_LDADD = \
  476. $(STARPU_OPENGL_RENDER_LDFLAGS) \
  477. $(STARPU_BLAS_LDFLAGS)
  478. endif
  479. ##############
  480. # CG example #
  481. ##############
  482. if !NO_BLAS_LIB
  483. cg_cg_SOURCES = \
  484. cg/cg.c \
  485. cg/cg_kernels.c \
  486. common/blas.c
  487. if STARPU_USE_CUDA
  488. cg_cg_SOURCES += \
  489. cg/cg_dot_kernel.cu
  490. endif
  491. cg_cg_LDADD = \
  492. $(STARPU_BLAS_LDFLAGS)
  493. endif
  494. ################
  495. # SpMV example #
  496. ################
  497. spmv_spmv_SOURCES = \
  498. spmv/spmv.c \
  499. spmv/spmv_kernels.c
  500. if STARPU_USE_CUDA
  501. spmv_spmv_SOURCES += \
  502. spmv/spmv_cuda.cu
  503. endif
  504. if ATLAS_BLAS_LIB
  505. spmv_dw_block_spmv_SOURCES = \
  506. spmv/dw_block_spmv.c \
  507. spmv/dw_block_spmv_kernels.c \
  508. spmv/matrix_market/mm_to_bcsr.c \
  509. spmv/matrix_market/mmio.c
  510. spmv_dw_block_spmv_LDADD = \
  511. $(STARPU_BLAS_LDFLAGS)
  512. endif
  513. #######################
  514. # Incrementer example #
  515. #######################
  516. incrementer_incrementer_SOURCES = \
  517. incrementer/incrementer.c
  518. if STARPU_USE_CUDA
  519. incrementer_incrementer_SOURCES += \
  520. incrementer/incrementer_kernels.cu
  521. endif
  522. if STARPU_USE_OPENCL
  523. incrementer_incrementer_SOURCES += \
  524. incrementer/incrementer_kernels_opencl.c
  525. nobase_STARPU_OPENCL_DATA_DATA += \
  526. incrementer/incrementer_kernels_opencl_kernel.cl
  527. endif
  528. ######################
  529. # matVecMult example #
  530. ######################
  531. if STARPU_USE_OPENCL
  532. nobase_STARPU_OPENCL_DATA_DATA += \
  533. matvecmult/matvecmult_kernel.cl
  534. endif
  535. #######################
  536. # dot_product example #
  537. #######################
  538. reductions_dot_product_SOURCES = \
  539. reductions/dot_product.c
  540. if STARPU_USE_CUDA
  541. reductions_dot_product_SOURCES += \
  542. reductions/dot_product_kernels.cu
  543. endif
  544. ##################
  545. # Mandelbrot Set #
  546. ##################
  547. mandelbrot_mandelbrot_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
  548. if HAVE_X11
  549. mandelbrot_mandelbrot_CPPFLAGS += $(X_CFLAGS)
  550. mandelbrot_mandelbrot_LDADD = $(X_PRE_LIBS) -lX11 $(X_LIBS) $(X_EXTRA_LIBS)
  551. endif
  552. ################
  553. # Top Examples #
  554. ################
  555. examplebin_PROGRAMS += \
  556. top/hello_world_top
  557. top_hello_world_top_SOURCES = \
  558. top/hello_world_top.c