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