# # $Id$ # # Opciones para el compilador. CXXFLAGS=-ansi -pedantic -Wall -g LDFLAGS=-lsocket++ TARGETS=udp_receiver udp_transmiter # Regla por defecto. all: $(TARGETS) clean: rm -f $(TARGETS) *.o