CXX=	g++ -ansi -Wall -g

all:	client
client:	client.o psx_pad.o player_command.o udp_socket.o
	$(CXX) -o client client.o psx_pad.o player_command.o udp_socket.o
clean:
	-rm -f *.o client
