CFLAGS=-g
LDFLAGS=

TARGET=C988

all: $(TARGET)

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