OBJS := remote.o ui.o commands.o proto.o adler32.o LIBS := -lcurses TARGET := remote CFLAGS := -I. -O2 -g $(TARGET): $(OBJS) $(CC) -o $(TARGET) $(OBJS) $(LIBS) clean: rm -f $(TARGET) (OBJS)