Skip to content

Commit

Permalink
- Fix makefile bug for case-insensitive file systems
Browse files Browse the repository at this point in the history
- git: ignore .DS_STORE files genrated on Mac OS
(Issues reported by Henry McGilton)
  • Loading branch information
n-t-roff committed Dec 13, 2015
1 parent fc485c4 commit 35863ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_STORE
*.swp
9 changes: 4 additions & 5 deletions troff/nroff.d/terms.d/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ install: all
do \
$(INSTALL) -c -m 644 $$i $(ROOT)$(TABDIR)/$$i || exit; \
done
if cd $(ROOT)$(TABDIR); then \
test -e tab.300S || ln -s tab.300s tab.300S; \
test -e tab.300S-12 || ln -s tab.300s-12 tab.300S-12; \
test -e tab.4000A || ln -s tab.4000a tab.4000A; \
fi
cd $(ROOT)$(TABDIR) || exit 1; \
test -e tab.300S || ln -s tab.300s tab.300S || exit 1; \
test -e tab.300S-12 || ln -s tab.300s-12 tab.300S-12 || exit 1; \
test -e tab.4000A || ln -s tab.4000a tab.4000A || exit 1;

clean:
rm -f $(TABS) $(LINKS)
Expand Down

0 comments on commit 35863ae

Please sign in to comment.