summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-10-17 17:37:50 +0200
committerRoland Reichwein <mail@reichwein.it>2020-10-17 17:37:50 +0200
commit7b49d17f90f26394a116348befb5edcdffcedcb6 (patch)
treec32e76a9bea5851bfac92708fa626373573e4f06 /Makefile
parentf86999e137f43372236f2dccd1fe3572a85c0dcd (diff)
Add ret and int
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5971b19..463598f 100644
--- a/Makefile
+++ b/Makefile
@@ -47,8 +47,11 @@ endif
PROGSRC=\
asm/assembler.cpp \
asm/chunk.cpp \
- asm/segment.cpp \
+ asm/intel64/int.cpp \
asm/intel64/nop.cpp \
+ asm/intel64/ret.cpp \
+ asm/operators.cpp \
+ asm/segment.cpp \
bnf.cpp \
cpp.cpp \
cppbnf.cpp \
@@ -57,7 +60,6 @@ PROGSRC=\
elf.cpp \
file.cpp \
grammer.cpp \
- intel.cpp \
lexer.cpp \
minicc.cpp \
@@ -68,6 +70,7 @@ TESTSRC=\
test-grammer.cpp \
test-lexer.cpp \
test-minicc.cpp \
+ test-asm.cpp \
googlemock/src/gmock-all.cpp \
googletest/src/gtest-all.cpp \
$(PROGSRC)