15 lines
169 B
Makefile
15 lines
169 B
Makefile
# Single make file for everything becauz lazy
|
|
object=homework/msh/msh.c
|
|
cc=gcc
|
|
output=msh
|
|
|
|
default:
|
|
$(cc) $(object) -o $(output)
|
|
|
|
run:
|
|
./bin
|
|
|
|
|
|
clean:
|
|
rm -f $(output)
|