| 1 | greg | 1.1 | add_executable(cnt cnt.c) | 
| 2 |  |  |  | 
| 3 |  |  | add_executable(ev ev.c) | 
| 4 |  |  | target_link_libraries(ev rtrad) | 
| 5 |  |  |  | 
| 6 |  |  | add_executable(histo histo.c) | 
| 7 |  |  | target_link_libraries(histo ${LIB_M}) | 
| 8 |  |  |  | 
| 9 |  |  | add_executable(icalc calc.c) | 
| 10 |  |  | target_link_libraries(icalc rtrad) | 
| 11 |  |  |  | 
| 12 |  |  | add_executable(neaten neat.c) | 
| 13 |  |  |  | 
| 14 |  |  | add_executable(rcalc rcalc.c) | 
| 15 |  |  | target_link_libraries(rcalc rtrad) | 
| 16 |  |  |  | 
| 17 |  |  | add_executable(rlam lam.c) | 
| 18 |  |  | target_link_libraries(rlam rtrad) | 
| 19 |  |  |  | 
| 20 |  |  | add_executable(tabfunc tabfunc.c) | 
| 21 |  |  | target_link_libraries(tabfunc rtrad) | 
| 22 |  |  |  | 
| 23 |  |  | add_executable(total total.c) | 
| 24 |  |  | target_link_libraries(total ${LIB_M}) | 
| 25 |  |  |  | 
| 26 |  |  | install(TARGETS ev histo icalc neaten rcalc rlam tabfunc total | 
| 27 |  |  | RUNTIME DESTINATION bin) |