Clean up makefile

This commit is contained in:
XOR 2023-01-10 21:22:03 +01:00
parent 5ca8292ca1
commit 8c2cadfaf6

View file

@ -1,14 +1,14 @@
all: compile
compile:
eipaasm:
clang main.c -Wall -Wextra -o eipaasm
all: eipaasm
run:
./eipaasm
buildrun: compile
./eipaasm
builddebug:
eipaasm_debug:
gcc main.c -g -o eipaasm_debug
clean:
rm -f eipaasm eipaasm_debug *.out
rm -f eipaasm eipaasm_debug