blob: 0be968bab9ee3ec1d233122eb588ff99ee239f48 (
plain) (
tree)
|
|
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:
|