1
2
3
4
5
6
7
test_count_words:
    gcc  -o test_count_words  count_words.c  test_count_words.c

# This is a "rule" called 'test_count_words' with one "action".
#
# Translation:  To generate the file 'test_count_words', run this command:
#    gcc  -o test_count_words  count_words.c  test_count_words.c

© Copyright 2021 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.