summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 027c4b6226..2c5f702f0d 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -87,7 +87,7 @@ ifndef Source
Source = $(wildcard *.cpp *.c *.y *.l)
endif
-Objs = $(addsuffix .o,$(basename $(Source)))
+Objs = $(sort $(addsuffix .o,$(basename $(Source))))
ObjectsO = $(addprefix Release/,$(Objs))
ObjectsG = $(addprefix Debug/,$(Objs))
@@ -117,6 +117,7 @@ LIBNAME_AO := Release/lib$(LIBRARYNAME).a
LIBNAME_AG := Debug/lib$(LIBRARYNAME).a
all:: $(LIBNAME_AG)
+###all:: $(LIBNAME_G)
# TODO: Enable optimized builds
$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir Depend/.dir