CC = gcc
TARGET=

CPPFLAGS =
LDFLAGS =

all: $(TARGET)

test: all
	@sh ./C1121.sh

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

