CC = gcc

TARGET =

CPPFLAGS = 
LDFLAGS = 

all: $(TARGET)

test: all
	@sh ./C732.sh

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

