add asm versiob of helloworld. still needs correct yasm params

This commit is contained in:
Johannes Findeisen 2018-01-10 18:47:10 +01:00
commit 55dab91ad9
2 changed files with 29 additions and 0 deletions

View file

@ -5,5 +5,8 @@ debug:clean
$(CC) $(CFLAGS) -g -o helloworld helloworld.c
stable:clean
$(CC) $(CFLAGS) -o helloworld helloworld.c
asm:clean
yasm -f elf -o helloworld helloworld.asm
chmod +x helloworld
clean:
rm -vfr *~ helloworld