Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorFCM authored Jul 13, 2020
1 parent 4e9c13f commit f35fab3
Show file tree
Hide file tree
Showing 5 changed files with 938 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
main.o : main.c
gcc -o main.o -c main.c

principais.o : principais.c
gcc -o principais.o -c principais.c

funcoes.o : auxiliares.c
gcc -o auxiliares.o -c auxiliares.c

main : main.o principais.o auxiliares.o
gcc -o main main.o principais.o auxiliares.o

all : main

run : main
./main

clean :
rm main main.o principais.o auxiliares.o
Loading

0 comments on commit f35fab3

Please sign in to comment.