assume HOST is set to mingw32-windows until someone who knows how can have make fail when HOST isn't set

svn path=/branches/xmlbuildsystem/; revision=12822
This commit is contained in:
Royce Mitchell III
2005-01-05 18:13:56 +00:00
parent 5793157884
commit f97516bc1c
+4 -2
View File
@@ -34,14 +34,16 @@ HOST_LFLAGS = -g
rbuild$(EXE_POSTFIX): $(OBJECTS)
$(HOST_CXX) $(OBJECTS) $(HOST_LFLAGS) -o rbuild$(EXE_POSTFIX)
ifeq ($(HOST),"")
echo Please set HOST variable to mingw32-windows or mingw32-linux
endif
ifeq ($(HOST),mingw32-linux)
clean:
-rm -f *.o
-rm -f rbuild$(EXE_POSTFIX)
-rm -f tests/*.o
-rm -f rbuild_tests$(EXE_POSTFIX)
endif
ifeq ($(HOST),mingw32-windows)
else
clean:
-del *.o
-del rbuild$(EXE_POSTFIX)