Skip to content

Commit

Permalink
update .travis.yml & fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hnes committed Jul 12, 2018
1 parent 7290791 commit 571c5b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ script:
- ls /usr/include
- ls /usr/include/valgrind
- date
- make
- ls -hl
- ./test_aco_synopsis
- make clean
- mkdir output
- bash make.sh
- ls output
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
TARGET = test_aco_synopsis
CC = gcc
CFLAGS = -g -O2 -Wall -Werror

test_aco_synopsis : acosw.o aco.o test_aco_synopsis.o
cc -o test_aco_synopsis acosw.o aco.o test_aco_synopsis.o
$(CC) -o test_aco_synopsis acosw.o aco.o test_aco_synopsis.o

acosw.o : acosw.S
$(CC) $(CFLAGS) -c acosw.S -o acosw.o
Expand Down

2 comments on commit 571c5b7

@elfring
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you mix changes for different issues?

@hnes
Copy link
Owner Author

@hnes hnes commented on 571c5b7 Jul 13, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much for your advice, Markus.
I'll keep that in mind and will not mix them anymore.

Please sign in to comment.