CFLAGS=-g
LDFLAGS=

TARGET=map_and_read

all: $(TARGET)

test: all
	./C1291.sh
clean:
	rm -f $(TARGET) *.o *.txt
