Fortraneries/C_Binding/Makefile

10 lines
185 B
Makefile
Raw Normal View History

2023-02-11 17:05:58 +01:00
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 $<