TARGET := main CFLAGS := -Wall LIBS := -leditline OBJECTS := \ main.o all: $(TARGET) $(TARGET): $(OBJECTS) $(CC) -o $@ $(OBJECTS) $(LIBS)