Commit 91486a5d4f744c4fb84cce74520f8579fa392f27
1 parent
6f4ef931
Exists in
master
and in
1 other branch
Fixing builds after os changes.
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
Makefile.in
@@ -95,7 +95,7 @@ BUILDDIR=@BUILDDIR@ | @@ -95,7 +95,7 @@ BUILDDIR=@BUILDDIR@ | ||
95 | 95 | ||
96 | POTDIR=$(BUILDDIR)/.pot | 96 | POTDIR=$(BUILDDIR)/.pot |
97 | 97 | ||
98 | -OBJDIR=$(BUILDDIR)/.obj | 98 | +OBJDIR=$(BUILDDIR)/.obj/@OSNAME@ |
99 | OBJDBG=$(OBJDIR)/Debug | 99 | OBJDBG=$(OBJDIR)/Debug |
100 | OBJRLS=$(OBJDIR)/Release | 100 | OBJRLS=$(OBJDIR)/Release |
101 | 101 | ||
@@ -525,7 +525,9 @@ clean: \ | @@ -525,7 +525,9 @@ clean: \ | ||
525 | cleanDebug \ | 525 | cleanDebug \ |
526 | cleanRelease | 526 | cleanRelease |
527 | 527 | ||
528 | - @rm -fr $(BUILDDIR)/.tmp/$(LIBNAME) | 528 | + @rm -fr $(BUILDDIR)/.obj |
529 | + @rm -fr $(BUILDDIR)/.bin | ||
530 | + @rm -fr $(BUILDDIR)/.tmp | ||
529 | @rm -fr $(POTDIR)/$(LIBNAME) | 531 | @rm -fr $(POTDIR)/$(LIBNAME) |
530 | @rm -f locale/*.pot | 532 | @rm -f locale/*.pot |
531 | 533 |