https://github.com/virtualagc/virtualagc
Revision 078c79d8734a9ed2860303a7c1662004284fe853 authored by Ron Burkey on 07 August 2022, 15:04:04 UTC, committed by Ron Burkey on 07 August 2022, 15:04:04 UTC
assembly listings from yaASM and yaLEMAP. Added some debugging messages
to 'make install'.  Tweaked debugging messages that VirtualAGC embeds in
'simulate'.  Verified buildability in Mint 21, 20, 19, 17, and verified
buildability using clang in Mint 17.
1 parent 6bb1acc
Raw File
Tip revision: 078c79d8734a9ed2860303a7c1662004284fe853 authored by Ron Burkey on 07 August 2022, 15:04:04 UTC
Fixed a potential string-overflow bug in yaASM. Removed timestamps from
Tip revision: 078c79d
CMakeLists.txt
add_executable(listing2binsource listing2binsource.c utils.c)
add_executable(oct2bin oct2bin.c utils.c)

add_executable(checkdec checkdec.c)
target_link_libraries(checkdec PRIVATE m)

add_executable(bdiffhead bdiffhead.c)
add_executable(webb2burkey-rope webb2burkey-rope.c)
add_executable(split-interp split-interp.c)

set(_targs listing2binsource oct2bin checkdec bdiffhead webb2burkey-rope split-interp)

foreach(t ${_targs})
  target_compile_definitions(${t} PRIVATE NVER="${NVER}" MAIN_PROGRAM)
endforeach()

install(TARGETS ${_targs})
back to top