9 lines
80 B
Makefile
9 lines
80 B
Makefile
all: $(TARGET)
|
|
|
|
test: all
|
|
@sh ./C1195.sh
|
|
|
|
clean:
|
|
rm -f $(TARGET) *.o CT*.txt
|
|
|