LOPS = -Xarch=v9 -x -u all: client server server: server.c uici.c copyfile.c cc -o server server.c copyfile.c read_and_write.c uici.c -lsocket -lnsl client: client.c uici.c copyfile.c cc -o client client.c copyfile.c read_and_write.c uici.c -lsocket -lnsl lints: lint $(LOPS) server.c uici.c copyfile.c read_and_write.c lintc: lint $(LOPS) client.c uici.c copyfile.c read_and_write.c clean: rm -f *.o server client