From 75ea20675d012e692996bc6beae9149b0deb08b0 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 5 Nov 2021 18:52:11 +0100 Subject: initial commit --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0be968b --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +all: libste.a example + +libste.a: stechr.o stecpe.o stecpy.o steprn.o + $(AR) $(ARFLAGS) $@ $^ + +example: example.o libste.a + +tests: tests.o libste.a + +check: tests FRC + prove -v ./tests + +README: libste.3 + mandoc -Tutf8 $^ | col -bx >$@ + + +clean: FRC + rm -f *.o *.a example tests + +FRC: -- cgit 1.4.1