1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# This is the makefile for fill_array
# you are free to copy/adapt from this file

#<target>: <dependencies>
#   <command>
#   <command>

# Compiles test_fill_array using c source files
# Note: this relies indirectly on miniunit, you will need to
# provide a working miniunit to compile
test_fill_array: test_fill_array.c fill_array.c
    gcc test_fill_array.c fill_array.c -o test_fill_array

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