Assembler/Makefile
2023-01-12 00:12:12 +01:00

14 lines
No EOL
189 B
Makefile

eipaasm:
clang src/* -Wall -Wextra -o eipaasm
all: eipaasm
run:
./eipaasm
buildrun: compile
./eipaasm
eipaasm_debug:
gcc src/* -g -o eipaasm_debug
clean:
rm -f eipaasm eipaasm_debug