X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/4c52a7024a46f923d1db8362bc5c5c9cd1fac1b2..1de5f8fa25dcea9fb9de9707d75120f762ce3a87:/tests/skstream/Makefile diff --git a/tests/skstream/Makefile b/tests/skstream/Makefile index 983f331..23604cd 100644 --- a/tests/skstream/Makefile +++ b/tests/skstream/Makefile @@ -3,11 +3,15 @@ # # Opciones para el compilador. -CXXFLAGS=-ansi -pedantic -Wall -g3 `skstream-config --cflags` -LDFLAGS=`skstream-config --libs` +CXXFLAGS=-ansi -pedantic -Wall -g `pkg-config --cflags skstream-0.3` +LDFLAGS=`pkg-config --libs skstream-0.3` + +TARGETS=cliente_tcp cliente_udp broadcaster_udp # Regla por defecto. -all: cliente servidor -cliente: cliente.cpp -servidor: servidor.cpp +all: $(TARGETS) +#cliente: cliente.cpp +#servidor: servidor.cpp +clean: + rm -f $(TARGETS) *.o