From 8707f20d79fff4ff4d714cd7f7fae5d37793575b Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Wed, 10 Jan 2018 21:19:00 +0100 Subject: [PATCH] some fixes --- .gitignore | 1 + Makefile | 6 +++--- README.md | 3 +++ 3 files changed, 7 insertions(+), 3 deletions(-) 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