mirror of https://github.com/XEphem/XEphem.git
Compare commits
4 Commits
66bbca964b
...
9be354f863
| Author | SHA1 | Date |
|---|---|---|
|
|
9be354f863 | |
|
|
b6529a3ce3 | |
|
|
48db8e8eaa | |
|
|
8b0dc94428 |
|
|
@ -4,6 +4,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- fix-ci
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
|
|
@ -31,6 +32,8 @@ jobs:
|
|||
run: brew install openssl && brew info openssl
|
||||
- name: Install XQuartz
|
||||
run: brew install xquartz --cask && brew info xquartz
|
||||
- name: Install groff
|
||||
run: brew install groff && brew info groff
|
||||
- name: Compile
|
||||
run: make -C GUI/xephem
|
||||
- name: Test
|
||||
|
|
|
|||
|
|
@ -197,21 +197,23 @@ OBJS = \
|
|||
xephem.o \
|
||||
xmisc.o
|
||||
|
||||
all: libs xephem xephem.1
|
||||
LIBRARIES := libip liblilxml libjpegd libpng libz
|
||||
|
||||
xephem: $(INCS) $(OBJS)
|
||||
all: $(LIBRARIES) xephem xephem.1
|
||||
|
||||
xephem: $(INCS) $(OBJS) $(LIBRARIES)
|
||||
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
|
||||
xephem.1: xephem.man
|
||||
nroff -man $? > $@
|
||||
|
||||
libs:
|
||||
cd ../../libastro; make
|
||||
cd ../../libip; make
|
||||
cd ../../libjpegd; make
|
||||
cd ../../liblilxml; make
|
||||
cd ../../libpng; make
|
||||
cd ../../libz; make
|
||||
libs: $(LIBRARIES)
|
||||
|
||||
$(LIBRARIES): libastro
|
||||
$(MAKE) --directory=../../$@
|
||||
|
||||
libastro:
|
||||
$(MAKE) --directory=../../$@
|
||||
|
||||
clean:
|
||||
rm -fr *.o ../../lib*/*.[ao]
|
||||
|
|
|
|||
|
|
@ -5,5 +5,5 @@
|
|||
#include "xephem.h"
|
||||
|
||||
char PATCHLEVEL[] = "4.2.0";
|
||||
char PATCHDATE[] = "2021 September 13";
|
||||
char PATCHDATE[] = "2024 February 13";
|
||||
char COPYRIGHT[] = "Copyright (c) 1990-2021 by Elwood Charles Downey";
|
||||
|
|
|
|||
Loading…
Reference in New Issue