/usr/share/doc/libmseed-doc/example/Makefile is in libmseed-doc 2.19.5-1.
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 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Build environment can be configured the following
# environment variables:
# CC : Specify the C compiler to use
# CFLAGS : Specify compiler options to use
# Required compiler parameters
CFLAGS += -I..
LDFLAGS = -L..
LDLIBS = -lmseed
all: msview msrepack
msview: msview.o
$(CC) $(CFLAGS) -o $@ msview.o $(LDFLAGS) $(LDLIBS)
msrepack: msrepack.o
$(CC) $(CFLAGS) -o $@ msrepack.o $(LDFLAGS) $(LDLIBS)
clean:
rm -f msview.o msview msrepack.o msrepack
install:
@echo
@echo "No install target, copy the executable(s) as needed"
@echo
|