10 lines
185 B
Makefile
10 lines
185 B
Makefile
|
|
||
|
all: single_function.o single_subroutine.o
|
||
|
|
||
|
single_function.o: single_function.c Makefile
|
||
|
gcc -Wall -g -c $<
|
||
|
|
||
|
single_subroutine.o: single_subroutine.c Makefile
|
||
|
gcc -Wall -g -c $<
|
||
|
|