From e7e05efea49c37fc1161fc5483314257942fe381 Mon Sep 17 00:00:00 2001 From: Justin Kerk Date: Mon, 23 Feb 2015 07:26:41 -0800 Subject: Fix tiny build when there are no buses (nw) --- makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefile b/makefile index bdf3e593e58..0182e22b8b8 100644 --- a/makefile +++ b/makefile @@ -935,6 +935,10 @@ $(sort $(OBJDIRS)): ifndef EXECUTABLE_DEFINED +ifeq ($(BUSES),) +LIBBUS = +endif + EMULATOROBJLIST = $(EMUINFOOBJ) $(DRIVLISTOBJ) $(DRVLIBS) $(LIBOSD) $(LIBBUS) $(LIBOPTIONAL) $(LIBEMU) $(LIBDASM) $(LIBUTIL) $(EXPAT) $(SOFTFLOAT) $(JPEG_LIB) $(FLAC_LIB) $(7Z_LIB) $(FORMATS_LIB) $(LUA_LIB) $(SQLITE3_LIB) $(WEB_LIB) $(BGFX_LIB) $(ZLIB) $(LIBOCORE) $(MIDI_LIB) $(RESFILE) ifeq ($(TARGETOS),emscripten) -- cgit v1.2.3