makefile
This commit is contained in:
parent
1f0adc0a69
commit
e855248606
2 changed files with 7 additions and 2 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,8 +1,10 @@
|
||||||
# ignore all files
|
# ignore all files
|
||||||
*
|
*
|
||||||
|
|
||||||
# except files with extensions
|
# except these
|
||||||
!*.*
|
!*.*
|
||||||
|
!makefile
|
||||||
|
|
||||||
# except except these files
|
|
||||||
|
# except except these
|
||||||
*.o
|
*.o
|
||||||
|
|
3
makefile
Normal file
3
makefile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
main:
|
||||||
|
nasm -f elf64 -o hello.o hello.s
|
||||||
|
ld -o hello hello.o
|
Loading…
Add table
Add a link
Reference in a new issue