CFLAGS=-g
LDFLAGS=

TARGET=C1351

all: $(TARGET)

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