diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-18 18:10:42 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-18 18:10:42 +0100 |
commit | 1937e301b6cd185c8ce907b9184142e82e76fda4 (patch) | |
tree | ea950d00019d4a3583fd8451fb3dc336347d4473 /Makefile | |
parent | 031bfef600e7021c8bd72e2e663f368e7386b131 (diff) |
Implemented asm or
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -62,6 +62,7 @@ PROGSRC=\ asm/intel64/mul.cpp \ asm/intel64/neg.cpp \ asm/intel64/not.cpp \ + asm/intel64/or.cpp \ asm/intel64/pop.cpp \ asm/intel64/push.cpp \ asm/intel64/rcl.cpp \ @@ -111,7 +112,9 @@ TESTSRC=\ SRC=$(PROGSRC) mcc.cpp -all: mcc unittest systemtest +all: mcc + +test: unittest systemtest # Tests on C++ level unittest: test-$(PROJECTNAME) |