msh in its own long standing directory now

This commit is contained in:
shockrah
2019-09-21 12:58:31 -07:00
parent 1fdd54e80f
commit a85dffe4da
3 changed files with 5 additions and 47 deletions

View File

@@ -1,10 +1,14 @@
# Single make file for everything becauz lazy
object=hw.c
object=homework/msh/msh.c
cc=gcc
output=bin
default:
$(cc) $(object) -o $(output)
run:
./bin
clean:
rm -f $(output)