make: default to build gcc+clang

This commit is contained in:
Victor Fernandes 2017-02-02 15:09:35 -05:00
parent 947f2d9b2e
commit 4a56fbc9ed
1 changed files with 6 additions and 0 deletions

View File

@ -15,7 +15,13 @@ ALL = $(SRC) $(DEPS)
# Object files
OBJ = buffer.o platy_bt.o
default: all
.PHONY: all
all:
make gcc
make clang
.PHONY : gcc
gcc : $(ALL)
$(GCC) $(ALL) -o buffer_gcc