/usr/share/doc/libofapi-example/examples/Makefile is in libofapi-example 0git20070620-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | BINARIES=example ramtest soundbus
all: $(BINARIES)
%: %.c
gcc -std=c99 -lofapi $< -o $@
clean:
rm -f $(BINARIES)
.PHONY: clean all
|