Rename to Assembler
This commit is contained in:
parent
30eed1d9fc
commit
d611864991
2 changed files with 8 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -36,8 +36,8 @@
|
|||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
interpreter
|
||||
interpreter_debug
|
||||
eipaasm
|
||||
eipaasm_debug
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
|
|
10
Makefile
10
Makefile
|
@ -1,12 +1,14 @@
|
|||
all: compile
|
||||
|
||||
compile:
|
||||
clang main.c -Wall -Wextra -o interpreter
|
||||
clang main.c -Wall -Wextra -o eipaasm
|
||||
|
||||
run:
|
||||
./interpreter
|
||||
./eipaasm
|
||||
|
||||
buildrun: compile
|
||||
./interpreter
|
||||
./eipaasm
|
||||
builddebug:
|
||||
gcc main.c -g -o interpreter_debug
|
||||
gcc main.c -g -o eipaasm_debug
|
||||
clean:
|
||||
rm -f eipaasm eipaasm_debug *.out
|
Loading…
Reference in a new issue