summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2019-05-17 12:26:26 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-03-04 14:53:01 +0100
commit2629906b6d961064ad566f90adfe8d28a7315d8a (patch)
treee0b4b4f254f6589d2cb04b73b4efb83164edc83f /Makefile
parenta245411ab23f9fa1e5fd43ce5ce0d1391e6ed6e6 (diff)
#941 add basic database-independent abstraction (dbi)
Add basic infrastructure to support for the independent database layer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bffa4dc..9087eaa 100644
--- a/Makefile
+++ b/Makefile
@@ -12,10 +12,10 @@ CFLAGS += -g -Wall -I../../Includes
CPPFLAGS := $(CFLAGS)
# Opciones de linkado
-LDFLAGS := -Wl,--no-as-needed $(shell mysql_config --libs) -lev -ljansson
+LDFLAGS := -Wl,--no-as-needed $(shell mysql_config --libs) -lev -ljansson -ldbi
# Ficheros objetos
-OBJS := ../../Includes/Database.o sources/ogAdmServer.o
+OBJS := ../../Includes/Database.o sources/ogAdmServer.o sources/dbi.o
all: $(PROYECTO)