diff --git a/.gitignore b/.gitignore index 66a03b4..f67684b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Project based helloworld *.bak +*.swp # Prerequisites *.d diff --git a/Makefile b/Makefile index 4725edb..c6f1deb 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ debug:clean stable:clean $(CC) $(CFLAGS) -o helloworld helloworld.c asm:clean - yasm -f elf -o helloworld helloworld.asm - chmod +x helloworld + yasm -f elf -o helloasm helloworld.asm + chmod +x helloasm clean: - rm -vfr *~ helloworld + rm -vfr *~ helloworld helloasm diff --git a/README.md b/README.md index 866d049..02dbb1a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # helloworld + +[![Build Status](https://travis-ci.org/hanez/helloworld.svg?branch=master)](https://travis-ci.org/hanez/helloworld) + Just some C code to test automated builds on build servers