11 lines
141 B
Makefile
11 lines
141 B
Makefile
# Single make file for everything becauz lazy
|
|
object=hw.c
|
|
cc=gcc
|
|
output=bin
|
|
|
|
default:
|
|
$(cc) $(object) -o $(output)
|
|
|
|
clean:
|
|
rm -f $(output)
|