OBJS=smtp.o forward.o

all: forward

forward: $(OBJS)
	$(CC) -o forward $(OBJS)

clean:
	rm -f $(OBJS) forward
