Skip to content

Commit

Permalink
feature: added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroMartinezQ committed Nov 17, 2020
1 parent b04c85c commit 7858975
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Makefile v1.0.0

all: compile

run: myshell.o
./myshell

compile: myshell.c
gcc myshell.c libparser.a -static -o myshell

clean:
rm myshell

0 comments on commit 7858975

Please sign in to comment.