diff --git a/microshell/Makefile b/microshell/Makefile index e69de29..2ba34f7 100644 --- a/microshell/Makefile +++ b/microshell/Makefile @@ -0,0 +1,13 @@ +234567891011 + + 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