Build - Changed output directory

This commit is contained in:
Emmanuel BENOîT 2017-11-22 08:53:31 +01:00
parent 0b33acc92a
commit 5027d91782
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
OUTDIR = output
OUTDIR = build
CXXFLAGS += $(shell sdl2-config --cflags) -std=c++14 -Wall -g
CFLAGS += $(shell sdl2-config --cflags)
@ -80,11 +80,11 @@ parsercheck: $(LIBEBCL) $(PARSERCHECK_BUILD)
$(PARSERCHECK_BUILD) $(LIBS)
clean:
rm -f $(ALL_OBJS) $(FILEDUMPS) demo parsercheck $(PCH)
rm -f $(ALL_OBJS) $(FILEDUMPS) demo parsercheck $(PCH) $(OUTDIR)/font-awesome.inl
fullclean: clean
@+make -C ebcl fullclean CONFIG=../ebcl-config
rm -f $(ALL_DEPS)
rm -f $(ALL_DEPS) $(OUTDIR)/font-to-c
.PHONY: all clean fullclean