CC = gcc

TARGET =

CPPFLAGS = 
LDFLAGS = 

all: $(TARGET)

test: all
	@sh ./C1102.sh

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

