Skip to content

Commit 00e2d97

Browse files
committed
Update .gitignore and makefile
.gitignore updated to *.dSYM (these are created with compilling with gfortran on macOS using -fPIC. makefile updated to install manual page for strings.3.
1 parent fdb425c commit 00e2d97

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*.so
1616
*.dylib
1717
*.dll
18+
*.dSYM
1819

1920
# Fortran module files
2021
*.mod

makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ test:
2626
install:
2727
-install -d -v -m 755 $(PREFIX)/include
2828
-install -d -v -m 755 $(PREFIX)/lib
29+
-install -d -v -m 755 $(PREFIX)/share/man/man3
2930
-install -v -m 755 strings.mod $(PREFIX)/include/strings.mod
3031
-install -v -m 755 libfstrings.a $(PREFIX)/lib/libfstrings.a
3132
-install -v -m 755 libfstrings.so $(PREFIX)/lib/libfstrings.so
33+
-install -v -m 755 docs/man/man3/strings.3 $(PREFIX)/share/man/man3/strings.3
3234

3335
clean:
3436
-rm -f strings.mod strings.o libfstrings.a libfstrings.so

0 commit comments

Comments
 (0)