Clean up makefile
This commit is contained in:
parent
5ca8292ca1
commit
8c2cadfaf6
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -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
|
Loading…
Reference in a new issue