From f0cea2dd1d9e23a6f3c11591b5864af218341d22 Mon Sep 17 00:00:00 2001 From: Krystian Rzepa Date: Fri, 18 Jan 2019 08:35:05 +0000 Subject: [PATCH] Zaktualizuj 'microshell/Makefile' --- microshell/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) 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