# 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$ # # Opciones para el compilador. CXXFLAGS=-ansi -pedantic -Wall `pkg-config --cflags glibmm-2.0` `pkg-config --cflags gthread-2.0` CXXFLAGS+=-g -DDEBUG #CXXFLAGS+=-g #CXXFLAGS+=-O3 LDFLAGS=-lsocket++ `pkg-config --libs glibmm-2.0` `pkg-config --libs gthread-2.0` TARGETS=connection.o controlclient.o controlserver.o receiver.o transmitter.o \ server.o TESTS=server_test # Regla por defecto. all: $(TARGETS) $(TESTS) runnable_h=runnable.h objects+=runnable.o runnable.o: $(runnable_h) runnable.cpp connection_h=$(runnable_h) connection.h objects+=connection.o connection.o: $(connection_h) connection.cpp controlclient_h=$(connection_h) controlclient.h objects+=controlclient.o controlclient.o: $(controlclient_h) controlclient.cpp controlserver_h=$(connection_h) controlserver.h objects+=controlserver.o controlserver.o: $(controlserver_h) controlserver.cpp receiver_h=$(connection_h) receiver.h objects+=receiver.o receiver.o: $(receiver_h) receiver.cpp transmitter_h=$(connection_h) transmitter.h objects+=transmitter.o transmitter.o: $(transmitter_h) transmitter.cpp server_h=$(controlserver_h) $(transmitter_h) server.h objects+=server.o server.o: $(server_h) server.cpp # Tests server_test: $(objects) server_test.cpp clean: rm -f $(TARGETS) $(TESTS) *.o