Rename to Assembler

This commit is contained in:
XOR 2023-01-05 23:46:45 +01:00
parent 30eed1d9fc
commit d611864991
2 changed files with 8 additions and 6 deletions

4
.gitignore vendored
View file

@ -36,8 +36,8 @@
*.i*86
*.x86_64
*.hex
interpreter
interpreter_debug
eipaasm
eipaasm_debug
# Debug files
*.dSYM/
*.su

View file

@ -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