]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/tests/Makefile
* Se agrega un Tanque al ejemplo, y ANDA!!!!
[z.facultad/75.42/plaqui.git] / Server / tests / Makefile
index 526d9228d060f832d6d4d483d5c888953b17bd69..c5bfc639a1c37f99a09e0ea3b885b698eb5c26a0 100644 (file)
@@ -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)
@@ -38,9 +41,9 @@ CXXFLAGS=-ansi -pedantic -Wall -I$(INCLUDE_DIR) \
 CXXFLAGS+=-g -DDEBUG
 #CXXFLAGS+=-g
 #CXXFLAGS+=-O3
-LDFLAGS=-lsocket++ -L$(LIB_FILES) `pkg-config --libs glibmm-2.0 gthread-2.0`
+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