Skip to content

Commit

Permalink
앟셈블러도 함께 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Apr 5, 2024
1 parent c98fbbb commit d3aeaa1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@ aheui-py: version
cp rpaheui.py bin/aheui-py
cp rpaheui.py bin/aheui

ahsembler-py:
cp ahsembler.py bin/ahsembler

rpaheui-bigint-c:
RPAHEUI_BIGINT=1 $(RPYTHON) $(RPYTHONFLAGS) --output rpaheui-bigint-c rpaheui.py

rpaheui-c:
$(RPYTHON) $(RPYTHONFLAGS) rpaheui.py

ahsembler-c:
$(RPYTHON) ahsembler.py # No JIT

aheui-bigint-c: rpaheui-bigint-c
cp rpaheui-bigint-c bin/aheui-bigint-c

Expand Down
2 changes: 1 addition & 1 deletion ahsembler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

def entry_point(argv):
from aheui.aheui import entry_point
return entry_point(argv + ['--target=asm', '--output=-'])
return entry_point(argv + ['--target=asm+comment'])


def target(*args):
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def get_readme():
author='Jeong YunWon',
author_email='[email protected]',
url='https://github.com/aheui/rpaheui',
packages=(
packages=[
'aheui',
'aheui/int',
),
],
package_data={
'aheui': ['version.py']
},
Expand All @@ -45,6 +45,7 @@ def get_readme():
scripts=[
'bin/aheui-py',
'bin/aheui',
'bin/ahsembler',
],
classifiers=[
'Intended Audience :: Developers',
Expand Down

0 comments on commit d3aeaa1

Please sign in to comment.