X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f27c218d18ebf7198e07249aca1eed625da914fd..e36a4e9f6b04998cc8f92a8808abac66e670a01d:/Server/tests/Makefile?ds=sidebyside diff --git a/Server/tests/Makefile b/Server/tests/Makefile index 526d922..2479290 100644 --- a/Server/tests/Makefile +++ b/Server/tests/Makefile @@ -25,6 +25,9 @@ # $Id$ # +# Defino compilador y linker ? +CC=gcc + # UbicaciĆ³n de archivos .h INCLUDE_BASE_DIR=../include INCLUDE_DIR=$(INCLUDE_BASE_DIR) @@ -37,10 +40,10 @@ CXXFLAGS=-ansi -pedantic -Wall -I$(INCLUDE_DIR) \ `pkg-config --cflags glibmm-2.0 gthread-2.0` CXXFLAGS+=-g -DDEBUG #CXXFLAGS+=-g -#CXXFLAGS+=-O3 -LDFLAGS=-lsocket++ -L$(LIB_FILES) `pkg-config --libs glibmm-2.0 gthread-2.0` +#CXXFLAGS+=-O2 +LDFLAGS=-lsocket++ `pkg-config --libs glibmm-2.0 gthread-2.0` #-L$(LIB_FILES) -TARGETS=server_test +TARGETS=server_test client_test # Regla por defecto. all: $(TARGETS) @@ -52,6 +55,9 @@ $(LIB_FILES)/server.a: # Tests server_test: $(LIB_FILES)/server.a server_test.o +# Tests +client_test: $(LIB_FILES)/server.a client_test.o + clean: rm -f $(TARGETS) *.o