Remove unnecessary switch to groff

This commit is contained in:
Brandon Rhodes 2024-02-19 18:17:57 -05:00
parent 8725584536
commit ce3481c260
1 changed files with 1 additions and 4 deletions

View File

@ -28,14 +28,11 @@ ifndef MOTIFL
MOTIFL = /usr/lib
endif
ROFF = nroff
# For Linux and Apple OS X
# /opt/homebrew is for modern Apple Silicon; the other paths, for older macOS.
UNAME_S = $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
ROFF = nroff
PLATI = -I/opt/homebrew/include \
-I/usr/local/opt/openssl@3/include \
-I/opt/X11/include
@ -206,7 +203,7 @@ xephem: $(INCS) $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
xephem.1: xephem.man
$(ROFF) -man $? > $@
nroff -man $? > $@
libs:
cd ../../libastro; make