# vim: set noexpandtab tabstop=4 shiftwidth=4: #---------------------------------------------------------------------------- # PlaQui #---------------------------------------------------------------------------- # This file is part of PlaQui. # # PlaQui is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along # with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple # Place, Suite 330, Boston, MA 02111-1307 USA #---------------------------------------------------------------------------- # Creado: sáb oct 18 21:24:06 ART 2003 # Autores: Leandro Lucarella #---------------------------------------------------------------------------- # # $Id$ # # Defino compilador y linker ? CC=gcc # Ubicación de archivos .h INCLUDE_BASE_DIR=../include INCLUDE_DIR=$(INCLUDE_BASE_DIR) # Ubicación de archivos .a LIB_FILES=../src MODEL_DIR=../../Model # Opciones para el compilador. CXXFLAGS=-ansi -pedantic -Wall -I$(INCLUDE_DIR) -I$(MODEL_DIR)/include \ `pkg-config --cflags glibmm-2.0 gthread-2.0` `xml2-config --cflags` CXXFLAGS+=-g -DDEBUG #CXXFLAGS+=-g #CXXFLAGS+=-O2 LDFLAGS=-lsocket++ `pkg-config --libs glibmm-2.0 gthread-2.0` \ `xml2-config --libs` #-L$(LIB_FILES) TARGETS=server_test client_test receiver_test # Regla por defecto. all: $(TARGETS) # Librería de plaqui-server $(LIB_FILES)/server.a: cd $(LIB_FILES) && $(MAKE) # Tests server_test: $(LIB_FILES)/server.a $(MODEL_DIR)/src/model.a server_test.o client_test: $(LIB_FILES)/server.a client_test.o receiver_test: $(LIB_FILES)/server.a receiver_test.o clean: rm -f $(TARGETS) *.o