diff --git a/microshell/Makefile b/microshell/Makefile index e69de29..064d1c9 100644 --- a/microshell/Makefile +++ b/microshell/Makefile @@ -0,0 +1,11 @@ +default: all + +microshell.o: microshell.c + gcc -c microshell.c -o microshell.o + +all: microshell.o + gcc microshell.o -o microshell + +clean: + -rm -f microshell.o + -rm -f microshell \ No newline at end of file