Move asm into core and rename to asm/disasm (no prefix)

This commit is contained in:
Calvin Rose
2018-06-29 22:52:55 -04:00
parent 1ea9ebf04f
commit fde9751eab
9 changed files with 25 additions and 78 deletions
+1 -3
View File
@@ -58,7 +58,6 @@ DST_ALL_HEADERS=$(DST_HEADERS) \
$(DST_GENERATED_HEADERS)
# Source files
DST_ASM_SOURCES=$(sort $(wildcard src/assembler/*.c))
DST_COMPILER_SOURCES=$(sort $(wildcard src/compiler/*.c))
DST_CORE_SOURCES=$(sort $(wildcard src/core/*.c))
DST_MAINCLIENT_SOURCES=$(sort $(wildcard src/mainclient/*.c))
@@ -86,8 +85,7 @@ src/compiler/dststlbootstrap.gen.h: src/compiler/boot.dst xxd
##### The main interpreter program and shared object #####
##########################################################
DST_LIB_SOURCES=$(DST_ASM_SOURCES) \
$(DST_COMPILER_SOURCES) \
DST_LIB_SOURCES=$(DST_COMPILER_SOURCES) \
$(DST_CONTEXT_SOURCES) \
$(DST_CORE_SOURCES)