CC = gcc

all: $(TARGET)

test: all
	@sh ./C1027.sh

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

