Skip to content

Commit

Permalink
Add CFLAGS_EXTRA to library compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
eerimoq committed Jul 4, 2020
1 parent a19ad42 commit b544ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ clean:
rm $(LIBRARY)

$(LIBRARY):
$(CC) -Wall -O2 -Iinclude src/messi.c -c -o messi.o
$(CC) $(CFLAGS_EXTRA) -Wall -O2 -Iinclude src/messi.c -c -o messi.o
$(AR) cr $(LIBRARY) messi.o

0 comments on commit b544ab2

Please sign in to comment.