10 lines
73 B
Makefile
10 lines
73 B
Makefile
CC = gcc
|
|
|
|
all::
|
|
|
|
test:: all
|
|
sh ./C1377.sh
|
|
|
|
clean::
|
|
rm -f $(TARGET) *.o
|