small gcc introduction

This commit is contained in:
2022-01-01 21:37:36 +01:00
parent 010f67b881
commit 8cbf6437f5
5 changed files with 168 additions and 0 deletions

10
GCC Intro/makefile Normal file
View File

@@ -0,0 +1,10 @@
all: hello.exe
hello.exe: hello.o
gcc -o hello.exe hello.o
hello.o: hello.c
gcc -c hello.c
clean:
rm hello.o hello.exe