Fortraneries/C_Binding/Makefile

10 lines
185 B
Makefile
Raw Normal View History

2023-02-12 03:05:58 +11: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 $<