BIN=mysh
LDFLAGS=-lreadline
CFLAGS=-g -Wall

all:$(BIN)

% : %.c
	$(CC) $< -o $@ $(CFLAGS) $(LDFLAGS)

clean:
	rm -f $(BIN)
