aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 44c43bfb1b2c452dae935d97a8e4817bce1d2049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: sum.o sum_module.so

sum.o:
	cc -c -o sum.o sum.c

sum_module.so:
	cc -shared -I/usr/include/python3.12 -o sum_module.so sum.o sum_module.c

clean:
	rm -rf *.o *.so

.PHONY: all clean

Generated with cgit - Back to sebastiano.tronto.net