Assembler/Makefile

14 lines
189 B
Makefile
Raw Normal View History

2023-01-10 21:22:03 +01:00
eipaasm:
2023-01-12 00:12:12 +01:00
clang src/* -Wall -Wextra -o eipaasm
2022-12-16 10:56:34 +01:00
2023-01-10 21:22:03 +01:00
all: eipaasm
2022-12-16 10:56:34 +01:00
run:
2023-01-05 23:46:45 +01:00
./eipaasm
2022-12-24 01:01:12 +01:00
buildrun: compile
2023-01-05 23:46:45 +01:00
./eipaasm
2023-01-10 21:22:03 +01:00
eipaasm_debug:
2023-01-12 00:12:12 +01:00
gcc src/* -g -o eipaasm_debug
2023-01-05 23:46:45 +01:00
clean:
2023-01-10 21:22:03 +01:00
rm -f eipaasm eipaasm_debug