CC=gcc
CFLAGS=-g
LDFLAGS=

TARGET=

all: $(TARGET)

test: all
	sh ./C1511.sh

clean:
	rm -f $(TARGET) *.o *.txt *core*
