summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-08-07 07:20:01 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-08-07 07:20:01 +0000
commitf1b81c7e989e5dee910cdb597db3fb53dfee3c74 (patch)
treec335ef3a9cf0a39cb283058c3d9db0ac2d97c6d3 /makefile
parent345d6a596ca31fd38101e73bf7c442a4427229e7 (diff)
Initial commit of internal web server, mostly to check compiling on various platforms (nw)
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index 6a8b34a944d..c8540d55505 100644
--- a/makefile
+++ b/makefile
@@ -718,6 +718,9 @@ FORMATS_LIB = $(OBJ)/libformats.a
# add LUA library
LUA_LIB = $(OBJ)/liblua.a
+# add web library
+WEB_LIB = $(OBJ)/libweb.a
+
# add PortMidi MIDI library
ifeq ($(BUILD_MIDILIB),1)
INCPATH += -I$(SRC)/lib/portmidi
@@ -838,7 +841,7 @@ $(sort $(OBJDIRS)):
ifndef EXECUTABLE_DEFINED
-$(EMULATOR): $(EMUINFOOBJ) $(DRIVLISTOBJ) $(DRVLIBS) $(LIBOSD) $(LIBOPTIONAL) $(LIBEMU) $(LIBDASM) $(LIBUTIL) $(EXPAT) $(SOFTFLOAT) $(JPEG_LIB) $(FLAC_LIB) $(7Z_LIB) $(FORMATS_LIB) $(LUA_LIB) $(ZLIB) $(LIBOCORE) $(MIDI_LIB) $(RESFILE)
+$(EMULATOR): $(EMUINFOOBJ) $(DRIVLISTOBJ) $(DRVLIBS) $(LIBOSD) $(LIBOPTIONAL) $(LIBEMU) $(LIBDASM) $(LIBUTIL) $(EXPAT) $(SOFTFLOAT) $(JPEG_LIB) $(FLAC_LIB) $(7Z_LIB) $(FORMATS_LIB) $(LUA_LIB) $(WEB_LIB) $(ZLIB) $(LIBOCORE) $(MIDI_LIB) $(RESFILE)
$(CC) $(CDEFS) $(CFLAGS) -c $(SRC)/version.c -o $(VERSIONOBJ)
@echo Linking $@...
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) $^ $(LIBS) -o $@