mirror of https://github.com/XEphem/XEphem.git
Remove makefile rule for manpage
It was already in the correct format.
This commit is contained in:
parent
ad0d848558
commit
c6ee36e96c
|
|
@ -3,7 +3,6 @@
|
||||||
*.a
|
*.a
|
||||||
*.o
|
*.o
|
||||||
/GUI/xephem/xephem
|
/GUI/xephem/xephem
|
||||||
/GUI/xephem/xephem.1
|
|
||||||
|
|
||||||
# macOS HFS+ files
|
# macOS HFS+ files
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -192,14 +192,11 @@ OBJS = \
|
||||||
xephem.o \
|
xephem.o \
|
||||||
xmisc.o
|
xmisc.o
|
||||||
|
|
||||||
all: libs xephem xephem.1
|
all: libs xephem
|
||||||
|
|
||||||
xephem: $(INCS) $(OBJS)
|
xephem: $(INCS) $(OBJS)
|
||||||
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||||
|
|
||||||
xephem.1: xephem.man
|
|
||||||
nroff -man $? > $@
|
|
||||||
|
|
||||||
libs:
|
libs:
|
||||||
cd ../../libastro; make
|
cd ../../libastro; make
|
||||||
cd ../../libip; make
|
cd ../../libip; make
|
||||||
|
|
@ -212,4 +209,4 @@ clean:
|
||||||
rm -fr *.o ../../lib*/*.[ao]
|
rm -fr *.o ../../lib*/*.[ao]
|
||||||
|
|
||||||
clobber: clean
|
clobber: clean
|
||||||
rm -fr xephem xephem.1
|
rm -fr xephem
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue