# Directorio con los .h
INCLUDE_BASE_DIR=../include
INCLUDE_DIR=$(INCLUDE_BASE_DIR)/plaqui/server
+MODEL_DIR=../../Model
# Opciones para el compilador.
-CXXFLAGS=-ansi -pedantic -Wall -I$(INCLUDE_BASE_DIR) \
- `pkg-config --cflags glibmm-2.0 gthread-2.0`
+CXXFLAGS=-ansi -pedantic -Wall -I$(INCLUDE_BASE_DIR) -I$(MODEL_DIR)/include \
+ `pkg-config --cflags glibmm-2.0 gthread-2.0 libxml-2.0`
CXXFLAGS+=-g -DDEBUG
#CXXFLAGS+=-g
-#CXXFLAGS+=-O3
+#CXXFLAGS+=-O2
#LDFLAGS=-lsocket++ `pkg-config --libs glibmm-2.0 gthread-2.0`
TARGETS=server.a
objects+=httpmessage.o
httpmessage.o: $(httpmessage_h) httpmessage.cpp
+httpresponse_h=$(string_h) $(httperror_h) $(httpmessage_h) $(INCLUDE_DIR)/httprequest.h
+objects+=httpresponse.o
+httpresponse.o: $(httpresponse_h) httpresponse.cpp
+
httprequest_h=$(string_h) $(httpmessage_h) $(INCLUDE_DIR)/httprequest.h
objects+=httprequest.o
httprequest.o: $(httprequest_h) httprequest.cpp
objects+=command.o
command.o: $(command_h) command.cpp
-httpresponse_h=$(string_h) $(httperror_h) $(httpmessage_h) $(INCLUDE_DIR)/httprequest.h
-objects+=httpresponse.o
-httpresponse.o: $(httpresponse_h) httpresponse.cpp
+plant_h=$(INCLUDE_DIR)/plant.h
+objects+=plant.o
+plant.o: $(plant_h) plant.cpp
runnable_h=$(INCLUDE_DIR)/runnable.h
objects+=runnable.o